- Compatibility: Python 2.7+/3.3+.
- Platform: Crossplatform. Only tested on MacOs/Linux.
- Version: 0.1
WIP
git clone git@github.com:Fabbi/autoshift.git
or download it as zip
you'll need to install a few dependencies
pip install requests beautifulsoup4 lxml
or if you want to use the scheduling
pip install requests beautifulsoup4 lxml apscheduler
- for help
./auto.py --help
- redeem codes for Borderlands 2 on PC
./auto.py --game bl2 --platform pc
- keep redeeming every hour (you need
apscheduler
for that)
./auto.py --game bl2 --platform pc --schedule
- only redeem golden keys
./auto.py --game bl2 --platform pc --schedule --golden
- only redeem non-golden keys
./auto.py --game bl2 --platform pc --schedule --non-golden
- only redeem up to 30 keys
./auto.py --game bl2 --platform pc --schedule --golden --limit 30
- only query new keys (why though..)
./auto.py --game bl2 --platform pc --golden --limit 0
This tool consists of 3 parts:
This module handles the redemption of the SHiFT codes and could be used as standalone CLI tool to manually enter those codes. It queries login credentials on first use and saves the needed cookie to enable auto-login.
This module parses the codes from wherever they may come from (orcz.com at the moment) and creates/maintains the database. If you'd want to add other sources for SHiFT codes or future games, you'd make that here.
This one is the commandline interface you call to use this tool.
Available as a docker image based on python3.8-alpine
docker run confusingboat/autoshift:latest \
-e SHIFT_USER='<username>' \
-e SHIFT_PASS='<password>' \
-e SHIFT_GAMES='bl3 blps bl2 bl' \
-e SHIFT_PLATFORMS='epic xbox ps' \
-e SHIFT_ARGS='--schedule -v' \
-e TZ='America/Chicago' \
-v /path/to/keysdb/dir:/autoshift/data
The username for your SHiFT account
Example: johndoe123
The password for your SHiFT account
Example: p@ssw0rd
The game(s) you want to redeem codes for
Default: bl3 blps bl2 bl
Example: blps
or bl bl2 bl3
Game | Code |
---|---|
Borderlands | bl |
Borderlands 2 | bl2 |
Borderlands: The Pre-Sequel | blps |
Borderlands 3 | bl3 |
The platform(s) you want to redeem codes for
Default: epic steam
Example: xbox
or xbox ps
Platform | Code |
---|---|
PC (Epic) | epic |
PC (Steam) | steam |
Xbox | xbox |
Playstation | ps |
Additional arguments to pass to the script
Default: --schedule
Example: --schedule --golden --limit 30
Arg | Description |
---|---|
--golden |
Only redeem golden keys |
--non-golden |
Only redeem non-golden keys |
--limit n |
Max number of golden keys you want to redeem |
--schedule |
Keep checking for keys and redeeming every hour |
-v |
Verbose mode |
Your timezone
Default: America/Chicago
Example: Europe/London