Skip to content

Commit 8473738

Browse files
committed
fixed google.com checker
1 parent 3d891f4 commit 8473738

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

README.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ There is lib.ru inspired web interface which consists of these pages(with slash
195195
- http://localhost:55555/i/get/proxy/
196196
- http://localhost:55555/i/get/proxy_count_item/
197197
- http://localhost:55555/i/get/number_of_proxies_to_process/
198-
- http://localhost:55555/i/get/number_of_proxies_to_process/
199198
- http://localhost:55555/i/get/collector_state/
200199

201200
How to contribute?

checkers/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
from checkers.d3d_info_checker import D3DInfoChecker
2+
from checkers.google_com_checker import GoogleComChecker
3+
from checkers.ipinfo_io_checker import IPInfoIOChecker
14

checkers/google_com_checker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class GoogleComChecker(BaseChecker):
77
def __init__(self, timeout=None):
8-
super(GoogleComChecker, self).__init__("https://google.com", timeout=timeout)
8+
super(GoogleComChecker, self).__init__("https://www.google.com/humans.txt", timeout=timeout)
99

1010
async def validate(self, response: aiohttp.ClientResponse, checker_result: CheckerResult):
1111
'''

0 commit comments

Comments
 (0)