├── .gitignore ├── LICENSE ├── README.md ├── cookies.txt ├── lottery.py ├── lottery_server.py ├── requirements.txt └── static └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | 3 | .DS_Store 4 | 5 | venv/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-do/lottery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-do/lottery/HEAD/README.md -------------------------------------------------------------------------------- /cookies.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lottery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-do/lottery/HEAD/lottery.py -------------------------------------------------------------------------------- /lottery_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-do/lottery/HEAD/lottery_server.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-dateutil 2 | requests 3 | 4 | uvicorn 5 | fastapi 6 | pydantic -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-do/lottery/HEAD/static/index.html --------------------------------------------------------------------------------