A bot for entering giveaways https://steamgifts.com
Go to file
mcinj a101447eeb reorganization
- Had to reorganize so that Alembic's env.py could reference the tables in both local environment and a docker environment without manually modifying the python sys path. Maybe there is a better way idk
2022-05-20 12:20:08 -04:00
config add host 2022-05-16 16:03:12 -04:00
src reorganization 2022-05-20 12:20:08 -04:00
.dockerignore reorganization 2022-05-20 12:20:08 -04:00
.gitignore version control db 2022-05-19 18:03:35 -04:00
Dockerfile reorganization 2022-05-20 12:20:08 -04:00
README.md reorganization 2022-05-20 12:20:08 -04:00
main.py reorganization 2022-05-20 12:20:08 -04:00
requirements.txt version control db 2022-05-19 18:03:35 -04:00

README.md

About

The bot is specially designed for SteamGifts.com

Features

  • Automatically enters giveaways.
  • Undetectable.
  • Сonfigurable.
  • Sleeps to restock the points.
  • Can run 24/7.

Instructions

  1. Rename config/config.ini.example to config/config.ini.
  2. Add your PHPSESSION cookie to it.
  3. Modifying the other settings is optional.

Run from sources

python -m venv env
source env/bin/activate
pip install -r requirements.txt
python main.py

Docker

Run it

# Run the container
# Set TZ based on your timezone: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
docker run --name steamgifts -e TZ=America/New_York -d -v /path/to/the/config/folder:/config mcinj/docker-steamgifts-bot:latest

Or build it yourself locally

# Build the image
docker build -t steamgifts:latest .
# Run the container
# Set TZ based on your timezone: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
docker run --name steamgifts -e TZ=America/New_York -d -v /path/to/the/config/folder:/config steamgifts:latest

Help

Please leave your feedback and bugs in Issues page.