This commit is contained in:
ParkSuMin
2025-02-24 20:30:00 +03:00
parent 15470b32d2
commit ad7f6edcc0
16606 changed files with 555 additions and 3226849 deletions

7
yoomoney_src/check_ip.py Normal file
View File

@@ -0,0 +1,7 @@
import socket
def check_user_ip(external_ip) -> bool:
local_ip = socket.gethostbyname(socket.gethostname())
if local_ip != external_ip:
return False
return True