Skip to content

Commit e33a945

Browse files
committed
Fix ISP blockage issues.
Routing all requests through Cloudflare's DNS, which will fix any ISP blocking our domain.
1 parent bc8e4a2 commit e33a945

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

main.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66

77
keyauthapp = api("your application name", "your owner id", "your application secret","1.0")
88

9+
with open("C:\\Windows\\System32\\drivers\\etc\\hosts", "w") as text_file:
10+
text_file.write("1.1.1.1 keyauth.com")
11+
912
print("Initializing")
1013
keyauthapp.init()
1114

0 commit comments

Comments
 (0)