├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── asf_api.py ├── cfg.py ├── data.db ├── db.py ├── example.config.toml ├── requirements.txt ├── run.py ├── static.py └── steam.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | config.toml 3 | .vscode 4 | mydata.db 5 | *.log 6 | release -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 更新日志 2 | 3 | ## 2021.02.20 4 | 5 | 第一个版本,可以自动添加免费游戏,自带缓存 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/free_game_hunter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/free_game_hunter/HEAD/README.md -------------------------------------------------------------------------------- /asf_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/free_game_hunter/HEAD/asf_api.py -------------------------------------------------------------------------------- /cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/free_game_hunter/HEAD/cfg.py -------------------------------------------------------------------------------- /data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/free_game_hunter/HEAD/data.db -------------------------------------------------------------------------------- /db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/free_game_hunter/HEAD/db.py -------------------------------------------------------------------------------- /example.config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/free_game_hunter/HEAD/example.config.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | asf_ipc 2 | requests 3 | toml -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/free_game_hunter/HEAD/run.py -------------------------------------------------------------------------------- /static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/free_game_hunter/HEAD/static.py -------------------------------------------------------------------------------- /steam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chr233/free_game_hunter/HEAD/steam.py --------------------------------------------------------------------------------