https://github.com/batteredbunny/humblebundle-games
Simple CLI tool to display all unclaimed keys you have on your humble bundle account.
https://github.com/batteredbunny/humblebundle-games
humblebundle
Last synced: about 1 year ago
JSON representation
Simple CLI tool to display all unclaimed keys you have on your humble bundle account.
- Host: GitHub
- URL: https://github.com/batteredbunny/humblebundle-games
- Owner: BatteredBunny
- Created: 2023-11-02T22:54:39.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-07T11:05:46.000Z (about 2 years ago)
- Last Synced: 2025-02-05T23:02:43.159Z (over 1 year ago)
- Topics: humblebundle
- Language: Rust
- Homepage:
- Size: 525 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# humblebundle-games
Simple CLI tool to display all unclaimed keys you have on your humble bundle account.


```
Humble bundle keys
Usage: humblebundle-games [OPTIONS] --token
Options:
-t, --token _simpleauth_sess cookie value
-s, --steamdb adds steamdb info to parsable formats like json and csv
-f, --format format to output data in [default: text] [possible values: json, csv, text]
-h, --help Print help
-V, --version Print version
```
## Usage
Find ``_simpleauth_sess`` cookie from browser and use it in token flag
```
git clone https://github.com/BatteredBunny/humblebundle-games
cd humblebundle-games
cargo run --release -- --token {YOUR COOKIE}
```
## Run with nix flake
```
nix run github:BatteredBunny/humblebundle-games -- --token {YOUR COOKIE}
```
## Output example
``
cargo run --release -- --format json --steamdb
``
```json
[
{
"key": "Boomerang Fu",
"choice_url": "https://www.humblebundle.com/membership/february-2021",
"platform": "steam",
"url": "https://steamdb.info/app/965680/",
"user_score": 91.03,
"price_us": 14.99
},
{
"key": "Werewolf: The Apocalypse — Heart of the Forest",
"choice_url": "https://www.humblebundle.com/membership/february-2021",
"platform": "steam",
"url": "https://steamdb.info/app/1342620/",
"user_score": 79.29,
"price_us": 14.99
},
{
"key": "Trine 4: The Nightmare Prince",
"choice_url": "https://www.humblebundle.com/membership/february-2021",
"platform": "steam",
"url": "https://steamdb.info/app/690640/",
"user_score": 87.31,
"price_us": 29.99
},
]
```