Added Skipping functionality

This commit is contained in:
Peter Taylor 2021-12-18 11:25:42 +00:00
parent a5ab4b6c56
commit e078d23ceb
2 changed files with 7 additions and 2 deletions

View file

@ -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"

View file

@ -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)