-
Notifications
You must be signed in to change notification settings - Fork 2
Add uv support #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 3.10 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -31,6 +31,12 @@ The below are required Python packages. You can install them by running the foll | |
| pip install -r requirements.txt | ||
| ``` | ||
|
|
||
| Or with [uv](https://docs.astral.sh/uv/): | ||
|
|
||
| ```bash | ||
| uv sync | ||
| ``` | ||
|
|
||
| - [Requests](https://docs.python-requests.org/en/master/user/install/#install) | ||
| - [tqdm](https://github.com/tqdm/tqdm#installation) | ||
| - [Python Steam](https://github.com/ValvePython/steam) | ||
|
|
@@ -46,19 +52,22 @@ necessary Python packages: | |
|
|
||
| ## Usage | ||
|
|
||
| Run the script with the following commands in terminal: | ||
| Run the script with either [uv](https://docs.astral.sh/uv/) or Python: | ||
|
|
||
| 1. To download icons for specific games, provide the app IDs: | ||
|
|
||
| ```bash | ||
| python SteamIconsFix.py 730 440 570 228980 | ||
| ``` | ||
|
|
||
| 2. To print the list of installed games, run: | ||
|
|
||
| ```bash | ||
| python SteamIconsFix.py list | ||
| ``` | ||
|
|
||
| 3. To download icons for all installed games, run: | ||
|
|
||
| ```bash | ||
| python SteamIconsFix.py all | ||
|
Comment on lines
+55
to
72
|
||
| ``` | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| [project] | ||
| name = "SteamIconsFix" | ||
| version = "0.1.0" | ||
| description = "A script to download icons for all the installed games in your Steam library." | ||
| readme = "README.md" | ||
| requires-python = ">=3.10" | ||
| dependencies = [ | ||
| "requests>=2.32.5", | ||
| "steam[client]>=1.4.4", | ||
| "tqdm>=4.67.1", | ||
| ] |
Uh oh!
There was an error while loading. Please reload this page.