├── LICENSE ├── README.md ├── cache ├── auth.json ├── cache.json └── translations.json ├── classes ├── auth.py ├── sections.py └── twitter.py ├── config ├── config.py └── image.png ├── install.bat ├── main.py ├── requirements.txt └── run.bat /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftnite/Fortnite-Shop-Sections-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftnite/Fortnite-Shop-Sections-Bot/HEAD/README.md -------------------------------------------------------------------------------- /cache/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftnite/Fortnite-Shop-Sections-Bot/HEAD/cache/auth.json -------------------------------------------------------------------------------- /cache/cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftnite/Fortnite-Shop-Sections-Bot/HEAD/cache/cache.json -------------------------------------------------------------------------------- /cache/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftnite/Fortnite-Shop-Sections-Bot/HEAD/cache/translations.json -------------------------------------------------------------------------------- /classes/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftnite/Fortnite-Shop-Sections-Bot/HEAD/classes/auth.py -------------------------------------------------------------------------------- /classes/sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftnite/Fortnite-Shop-Sections-Bot/HEAD/classes/sections.py -------------------------------------------------------------------------------- /classes/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftnite/Fortnite-Shop-Sections-Bot/HEAD/classes/twitter.py -------------------------------------------------------------------------------- /config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftnite/Fortnite-Shop-Sections-Bot/HEAD/config/config.py -------------------------------------------------------------------------------- /config/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftnite/Fortnite-Shop-Sections-Bot/HEAD/config/image.png -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftnite/Fortnite-Shop-Sections-Bot/HEAD/install.bat -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftnite/Fortnite-Shop-Sections-Bot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftnite/Fortnite-Shop-Sections-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | TITLE=Swiftnite's Shop Section Bot 3 | python main.py 4 | timeout /T 10 --------------------------------------------------------------------------------