├── .gitignore ├── README.md ├── amazoncontest.py ├── imagetester.py ├── localhandler.py ├── serverhandler1.py └── testdatabase.db /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewelick/amazon-giveaway-bot/HEAD/README.md -------------------------------------------------------------------------------- /amazoncontest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewelick/amazon-giveaway-bot/HEAD/amazoncontest.py -------------------------------------------------------------------------------- /imagetester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewelick/amazon-giveaway-bot/HEAD/imagetester.py -------------------------------------------------------------------------------- /localhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewelick/amazon-giveaway-bot/HEAD/localhandler.py -------------------------------------------------------------------------------- /serverhandler1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewelick/amazon-giveaway-bot/HEAD/serverhandler1.py -------------------------------------------------------------------------------- /testdatabase.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewelick/amazon-giveaway-bot/HEAD/testdatabase.db --------------------------------------------------------------------------------