mirror of
https://github.com/Emersont1/itchio.git
synced 2026-03-11 08:54:39 +00:00
Added Skipping functionality
This commit is contained in:
parent
a5ab4b6c56
commit
e078d23ceb
2 changed files with 7 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "itchio"
|
||||
version = "1.0.1"
|
||||
version = "1.0.2"
|
||||
description = "Python Scripts for downloading / archiving your itchio library"
|
||||
authors = ["Peter Taylor <me@et1.uk>"]
|
||||
license = "MIT"
|
||||
|
|
|
|||
|
|
@ -55,5 +55,10 @@ class Game:
|
|||
|
||||
# Download
|
||||
file = d['filename'] or d['display_name'] or d['id']
|
||||
outfile = f"{self.publisher_slug}/{self.game_slug}/{file}"
|
||||
if os.path.exists(outfile):
|
||||
print(f"Skipping {outfile}")
|
||||
continue
|
||||
|
||||
url = f"https://api.itch.io/uploads/{d['id']}/download?api_key={token}&download_key_id={self.id}&uuid={j['uuid']}"
|
||||
itchio.utils.download_url(url, f"{self.publisher_slug}/{self.game_slug}/{file}", self.name +" - "+file)
|
||||
itchio.utils.download_url(url, outfile, self.name +" - "+file)
|
||||
|
|
|
|||
Loading…
Reference in a new issue