├── README.md ├── config ├── install.bat ├── main.py └── start.bat /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/directx5/SteamHourBooster/HEAD/README.md -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/directx5/SteamHourBooster/HEAD/config -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | pip install -U steam[client] 3 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/directx5/SteamHourBooster/HEAD/main.py -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | python main.py 3 | --------------------------------------------------------------------------------