ryxme
Efsane Üye
- Katılım
- 8 Ağu 2024
- Mesajlar
- 990
- Beğeniler
- 190
Merhaba arkadaşlar htppdebuggerda örnek olarak şu kodu çalıştırınca hiç bir kodla alakalı github vs.. veri gözükmüyor.Nasıl çözerim?
Python:
import requests
GITHUB_RAW_URL = "https://raw.githubusercontent.com/Ry9sme/asd/refs/heads/main/es"
def verify_password(input_password):
try:
response = requests.get(GITHUB_RAW_URL)
response.raise_for_status()
passwords_list = response.text.strip().split("\n")
if input_password in passwords_list:
print("tekrar denemek istermisin")
answer = input()
if answer.lower() == 'h':
print("Uygulama kapanacak")
return False
else:
print(" Uygulama devam ediyor.")
return True
else:
print("tekrar dene")
return False
except requests.exceptions.RequestException as e:
print(f" hata : {e}")
return False
if __name__ == "__main__":
while True:
input_password = input("key gir: ")
if not verify_password(input_password):
print("yanlıs")