def generate_url(self):
        """Generates url Codeforces.API_URL/user.status with appropriate args and returns the url"""

        url = Urlbuilder(Codeforces.API_URL, UserRequestMethod.SUBMISSION_METHOD);
        url.add_param('handle', self.handle)
        url.add_param('from', '1')
        url.add_param('count', str(self.max_sub_lim))
        return url.get_url()