ticket_booking_api Prerequisite.. Python-3 Django(Backend Framework) Django Restframework(Rest Framework) Pytest(Testing Framework) Database Sqlite Basic SetUp Install VirtualEnvironment setup : pip install virtualenvwrapper-win Create VirtualEnvironment and activating: mkvirtualenv project Create new folder : mkdir pro clone the repo inside folder(pro): git clone https://github.com/ayushkr07/ticket_booking_api.git Get into blogging_app folder: cd rest Install all the dependencies: pip install -r requirements.txt Run the project: python manage.py runserver Output An endpoint to view all the tickets. An endpoint to book a ticket using a user’s name, phone number, and timings. An endpoint to update a ticket timing. An endpoint to view all the tickets for a particular time. An endpoint to delete a particular ticket. An endpoint to view the user’s details based on the ticket id. Auto Expire ticket code.