Ejemplo n.º 1
0
 def get_captcha_key(self, captcha_image_url):
     """
     Read CAPTCHA key from shell
     """
     print('Open CAPTCHA image url: ', captcha_image_url)
     captcha_key = raw_input('Enter CAPTCHA key: ')
     return captcha_key
Ejemplo n.º 2
0
Archivo: mixins.py Proyecto: yarlson/vk
 def get_captcha_key(captcha_image_url):
     """
     Read CAPTCHA key from shell
     """
     print('Open CAPTCHA image url: ', captcha_image_url)
     captcha_key = raw_input('Enter CAPTCHA key: ')
     return captcha_key
Ejemplo n.º 3
0
Archivo: mixins.py Proyecto: itJunky/vk
 def get_access_token(self):
     logger.debug('InteractiveMixin.get_access_token()')
     access_token, access_token_expires_in = super(InteractiveMixin, self).get_access_token()
     if not access_token:
         access_token = raw_input('VK API access token: ')
         access_token_expires_in = None
     return access_token, access_token_expires_in
Ejemplo n.º 4
0
Archivo: mixins.py Proyecto: itJunky/vk
 def on_captcha_is_needed(self, url):
     """
     Read CAPTCHA key from shell
     """
     print('Open captcha url:', url)
     captcha_key = raw_input('Enter captcha key: ')
     return captcha_key
Ejemplo n.º 5
0
    def captcha_is_needed(self, error_data, method_name, **method_kwargs):
        captcha_sid = error_data.get('captcha_sid')
        captcha_img = error_data.get('captcha_img')

        print('Captcha URL: {}'.format(captcha_img))
        captcha_key = raw_input('Enter captcha text: ')

        method_kwargs['captcha_sid'] = captcha_sid
        method_kwargs['captcha_key'] = captcha_key
        return self(method_name, **method_kwargs)
Ejemplo n.º 6
0
    def captcha_is_needed(self, error_data, method_name, **method_kwargs):
        captcha_sid = error_data.get("captcha_sid")
        captcha_img = error_data.get("captcha_img")

        print("Captcha URL: {}".format(captcha_img))
        captcha_key = raw_input("Enter captcha text: ")

        method_kwargs["captcha_sid"] = captcha_sid
        method_kwargs["captcha_key"] = captcha_key
        return self(method_name, **method_kwargs)
Ejemplo n.º 7
0
    def captcha_is_needed(self, error_data, method_name, **method_kwargs):
        captcha_sid = error_data.get('captcha_sid')
        captcha_img = error_data.get('captcha_img')

        print('Captcha URL: {}'.format(captcha_img))
        captcha_key = raw_input('Enter captcha text: ')

        method_kwargs['captcha_sid'] = captcha_sid
        method_kwargs['captcha_key'] = captcha_key
        return self(method_name, **method_kwargs)
Ejemplo n.º 8
0
 def get_auth_check_code(self):
     """
     Read Auth code from shell
     """
     auth_check_code = raw_input('Auth check code: ')
     return auth_check_code.strip()
Ejemplo n.º 9
0
 def get_user_login(self):
     user_login = raw_input('VK user login: ')
     return user_login.strip()
Ejemplo n.º 10
0
Archivo: mixins.py Proyecto: yarlson/vk
 def get_auth_check_code():
     """
     Read Auth code from shell
     """
     auth_check_code = raw_input('Auth check code: ')
     return auth_check_code.strip()
Ejemplo n.º 11
0
 def get_captcha_key(self, captcha_image_url):
     print('Open CAPTCHA image url: ', captcha_image_url)
     captcha_key = raw_input('Enter CAPTCHA key: ')
     return captcha_key
Ejemplo n.º 12
0
 def get_auth_code(self):
     """
     Reload this in child
     """
     return raw_input("get 2-auth code: ")
Ejemplo n.º 13
0
 def get_captcha_key(self, url):
     """
     Reload this in child
     """
     print('Open captcha url:', url)
     return raw_input('Enter captcha key: ')
Ejemplo n.º 14
0
 def get_auth_code(self):
     """
     Reload this in child
     """
     return raw_input("get 2-auth code: ")
Ejemplo n.º 15
0
 def get_captcha_key(self, url):
     """
     Reload this in child
     """
     print('Open captcha url:', url)
     return raw_input('Enter captcha key: ')
Ejemplo n.º 16
0
 def get_auth_code(self):
     return raw_input("get 2-auth code: ")
Ejemplo n.º 17
0
Archivo: mixins.py Proyecto: yarlson/vk
 def get_user_login():
     user_login = raw_input('VK user login: ')
     return user_login.strip()