Merge pull request #21 from sundowndev/patch-msg
Patch need help message
This commit is contained in:
commit
27b39208b0
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
__version__ = 'v1.1.2-rc1'
|
__version__ = 'v1.0.0-rc2'
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import sys
|
import sys
|
||||||
|
@ -203,7 +203,7 @@ def search(req, stop):
|
||||||
while r.status_code == 503:
|
while r.status_code == 503:
|
||||||
print(code_warning + 'You are temporary blacklisted from Google search. Complete the captcha at the following URL and copy/paste the content of GOOGLE_ABUSE_EXEMPTION cookie : {}'.format(URL))
|
print(code_warning + 'You are temporary blacklisted from Google search. Complete the captcha at the following URL and copy/paste the content of GOOGLE_ABUSE_EXEMPTION cookie : {}'.format(URL))
|
||||||
print('\n' + code_info +
|
print('\n' + code_info +
|
||||||
'Need help ? Read https://github.com/sundowndev/PhoneInfoga#dealing-with-google-captcha')
|
'Need help ? Read https://github.com/sundowndev/PhoneInfoga/wiki')
|
||||||
token = input('\nGOOGLE_ABUSE_EXEMPTION=')
|
token = input('\nGOOGLE_ABUSE_EXEMPTION=')
|
||||||
googleAbuseToken = '&google_abuse=' + token
|
googleAbuseToken = '&google_abuse=' + token
|
||||||
r = s.get(URL + googleAbuseToken, headers=headers)
|
r = s.get(URL + googleAbuseToken, headers=headers)
|
||||||
|
|
Loading…
Reference in New Issue