Remove debug print

This commit is contained in:
timoxa0 2024-05-06 21:44:30 +05:00
parent 704b744b96
commit 61ca9f1023
2 changed files with 7 additions and 1 deletions

7
.gitignore vendored Normal file
View file

@ -0,0 +1,7 @@
dist/
build/
.idea/
files/
*.zip
*.spec

View file

@ -26,7 +26,6 @@ class File:
def md5sum(self) -> str | None:
try:
print(urllib.parse.urlparse(self.url).path)
return json.loads(requests.get(f"https://timoxa0.su/?info={urllib.parse.urlparse(self.url).path}")
.content.decode())["hashes"]["md5"]
except requests.ConnectionError: