├── .env.sample ├── .github ├── images │ └── check.png └── workflows │ ├── buy_lotto.yml │ └── check_winning.yml ├── .gitignore ├── HttpClient.py ├── Makefile ├── README.md ├── auth.py ├── controller.py ├── lotto645.py ├── notification.py ├── requirements.txt └── win720.py /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinpark/lottery-bot/HEAD/.env.sample -------------------------------------------------------------------------------- /.github/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinpark/lottery-bot/HEAD/.github/images/check.png -------------------------------------------------------------------------------- /.github/workflows/buy_lotto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinpark/lottery-bot/HEAD/.github/workflows/buy_lotto.yml -------------------------------------------------------------------------------- /.github/workflows/check_winning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinpark/lottery-bot/HEAD/.github/workflows/check_winning.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinpark/lottery-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /HttpClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinpark/lottery-bot/HEAD/HttpClient.py -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinpark/lottery-bot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinpark/lottery-bot/HEAD/README.md -------------------------------------------------------------------------------- /auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinpark/lottery-bot/HEAD/auth.py -------------------------------------------------------------------------------- /controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinpark/lottery-bot/HEAD/controller.py -------------------------------------------------------------------------------- /lotto645.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinpark/lottery-bot/HEAD/lotto645.py -------------------------------------------------------------------------------- /notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinpark/lottery-bot/HEAD/notification.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinpark/lottery-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /win720.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techinpark/lottery-bot/HEAD/win720.py --------------------------------------------------------------------------------