├── .gitignore ├── LICENSE ├── README.md ├── config.json.example ├── data ├── entry_types.json └── entry_types_playrgg.json ├── giveaway_bot.py ├── login.py ├── requirements.txt └── src ├── __init__.py ├── browser.py ├── giveaway.py ├── gleam.py ├── logger.py ├── playrgg.py ├── reddit.py ├── scraper.py ├── twitter.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/README.md -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/config.json.example -------------------------------------------------------------------------------- /data/entry_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/data/entry_types.json -------------------------------------------------------------------------------- /data/entry_types_playrgg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/data/entry_types_playrgg.json -------------------------------------------------------------------------------- /giveaway_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/giveaway_bot.py -------------------------------------------------------------------------------- /login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/login.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/src/browser.py -------------------------------------------------------------------------------- /src/giveaway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/src/giveaway.py -------------------------------------------------------------------------------- /src/gleam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/src/gleam.py -------------------------------------------------------------------------------- /src/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/src/logger.py -------------------------------------------------------------------------------- /src/playrgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/src/playrgg.py -------------------------------------------------------------------------------- /src/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/src/reddit.py -------------------------------------------------------------------------------- /src/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/src/scraper.py -------------------------------------------------------------------------------- /src/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/src/twitter.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobiasPankner/Gleam-giveaway-bot/HEAD/src/utils.py --------------------------------------------------------------------------------