Vaccination/Vaccine Slots are getting instantly Booked. To create a chance for arranging a vaccination slot, use simple automatic python script to make bookings as soon you find a slot available.
- Constant Periodic Monitoring of the COWIN Site for Slot Availability.
- Information reagarding Centers with Available Slots with their respective Areas.
- Information about Centers with Free/Paid Vaccination.
- Parallel/Concurrent request processing with for Slot Booking.
- Python 3.7
python vaccine_booking.py
We welcome contributions of any kind. If you have a bug or an idea, read the development guidelines setup.
- pre commit python framework
- Install pre-commit:
pip install pre-commit
- Add pre-commit to requirements.txt
- Define
.pre-commit-config.yaml
with the hooks.
repos:
- repo: https://github.com/ambv/black
rev: 21.5b0
hooks:
- id: black
language_version: python3.7
- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.1
hooks:
- id: flake8
- Execute
pre-commit install
to install git hooks in your .git/ directory. - Incase you see the below during commit:
black....................................................................Failed
- hook id: black
- files were modified by this hook
- Hint:
pre-commit autoupdate
often fixes this