예제 #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
예제 #2
0
파일: mixins.py 프로젝트: 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
예제 #3
0
파일: mixins.py 프로젝트: 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
예제 #4
0
파일: mixins.py 프로젝트: 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
예제 #5
0
파일: mixins.py 프로젝트: backdorus/vk
    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)
예제 #6
0
파일: mixins.py 프로젝트: akropotov/vk
    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)
예제 #7
0
파일: mixins.py 프로젝트: leo-code/vk
    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)
예제 #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()
예제 #9
0
 def get_user_login(self):
     user_login = raw_input('VK user login: ')
     return user_login.strip()
예제 #10
0
파일: mixins.py 프로젝트: 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()
예제 #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
예제 #12
0
파일: mixins.py 프로젝트: nmakhotkin/vk
 def get_auth_code(self):
     """
     Reload this in child
     """
     return raw_input("get 2-auth code: ")
예제 #13
0
파일: mixins.py 프로젝트: nmakhotkin/vk
 def get_captcha_key(self, url):
     """
     Reload this in child
     """
     print('Open captcha url:', url)
     return raw_input('Enter captcha key: ')
예제 #14
0
 def get_auth_code(self):
     """
     Reload this in child
     """
     return raw_input("get 2-auth code: ")
예제 #15
0
 def get_captcha_key(self, url):
     """
     Reload this in child
     """
     print('Open captcha url:', url)
     return raw_input('Enter captcha key: ')
예제 #16
0
파일: mixins.py 프로젝트: leo-code/vk
 def get_auth_code(self):
     return raw_input("get 2-auth code: ")
예제 #17
0
파일: mixins.py 프로젝트: yarlson/vk
 def get_user_login():
     user_login = raw_input('VK user login: ')
     return user_login.strip()