Eski bir web tarayıcısı kullanıyorsunuz. Bu veya diğer siteleri görüntülemekte sorunlar yaşayabilirsiniz.. Tarayıcınızı güncellemeli veya alternatif bir tarayıcı kullanmalısınız.
"
data = {"key": key}
response = requests.post(url, json=data)
# Check the response status code.
if response.status_code == 200:
return True
else:
return False
# Read keys from text file.
with open("keys.txt", "r") as f:
keys = f.readlines()
# Check the validity of each key.
for key in keys:
key = key.strip()
if check_key(key):
print("Key is valid:", key)
else:
print("Key is invalid:", key)