steamgifts-bot/README.md

54 lines
1.4 KiB
Markdown
Raw Normal View History

![](https://i.imgur.com/oCob3wQ.gif)
2019-02-28 13:04:41 +01:00
2019-02-28 13:12:42 +01:00
### About
The bot is specially designed for [SteamGifts.com](https://www.steamgifts.com/)
2019-02-28 13:04:41 +01:00
2019-02-28 13:12:42 +01:00
### Features
- Automatically enters giveaways.
- Undetectable.
2020-06-26 22:55:25 +02:00
- Сonvenient user interface.
- Сonfigurable.
2019-02-28 13:12:42 +01:00
- Sleeps to restock the points.
- Can run 24/7.
2019-02-28 13:04:41 +01:00
2020-06-26 22:55:25 +02:00
### How to run
2019-02-28 13:12:42 +01:00
1. Download the latest version: https://github.com/stilManiac/steamgifts-bot/releases
2. Sign in on [SteamGifts.com](https://www.steamgifts.com/) by Steam.
2020-06-26 22:55:25 +02:00
3. Find `PHPSESSID` cookie in your browser.
4. Start the bot and follow instructions.
2019-02-28 13:04:41 +01:00
2020-06-26 22:55:25 +02:00
### Run from sources
```bash
python -m venv env
source env/bin/activate
pip install -r requirements.txt
python src/cli.py
2020-06-26 22:55:25 +02:00
```
2019-02-28 13:12:42 +01:00
2022-04-22 20:32:55 +02:00
### Docker
#### Run it using a hub.docker.com image
```bash
# Run the container
docker run --name steamgifts -d -it mcinj/docker-steamgifts-bot:latest
# Attach to it to fill in the questions
docker attach steamgifts # to detach, you must use ctrl+p then ctrl+q.
# ctrl+c will kill the container
```
#### Or build it yourself locally
```bash
# Build the image
docker build -t steamgifts:latest .
# Run the container
docker run --name steamgifts -d -it steamgifts:latest
# Attach to it to fill in the questions
docker attach steamgifts # to detach, you must use ctrl+p then ctrl+q.
# ctrl+c will kill the container
```
2019-02-28 13:12:42 +01:00
### Help
2020-06-26 22:55:25 +02:00
Please leave your feedback and bugs in `Issues` page.