Remove debug print
This commit is contained in:
parent
704b744b96
commit
61ca9f1023
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
.idea/
|
||||||
|
files/
|
||||||
|
|
||||||
|
*.zip
|
||||||
|
*.spec
|
|
@ -26,7 +26,6 @@ class File:
|
||||||
|
|
||||||
def md5sum(self) -> str | None:
|
def md5sum(self) -> str | None:
|
||||||
try:
|
try:
|
||||||
print(urllib.parse.urlparse(self.url).path)
|
|
||||||
return json.loads(requests.get(f"https://timoxa0.su/?info={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"]
|
.content.decode())["hashes"]["md5"]
|
||||||
except requests.ConnectionError:
|
except requests.ConnectionError:
|
||||||
|
|
Reference in a new issue