The Vehicle Parking Management System is a web-based application that helps manage parking lots efficiently.
It provides separate roles for Admins and Users, ensuring smooth allocation and monitoring of parking spaces.
- Create and manage parking lots
- Add or remove parking spots
- View and monitor overall parking availability
- Reserve a parking spot
- Release a spot once done
- View real-time availability of spots
- Uses SQLite for lightweight and local storage
- Database is programmatically created on setup (no need for manual creation)
- Backend: Flask (Python)
- Frontend: HTML, CSS, Bootstrap (via Jinja2 templating)
- Database: SQLite
git clone https://github.com/yourusername/parking-management.git
cd parking-managementpython -m venv venv
source venv/bin/activate # On macOS/Linux
venv\Scripts\activate # On Windowspip install -r requirements.txtpython app.pyhttp://127.0.0.1:5000/