Developed by Solanki Sarkar
A simple web-based application built with Python and Flask to manage employee records, including the ability to:
- 🔍 Search employee data by various attributes (like name, department, etc.)
- ➕ Add new employee records
- 💰 Fetch the employee with the maximum salary
student_record_db/
├── app.py # Main Flask backend application
├── requirements.txt # Python dependencies
├── queries.sql
├── employee.db
├── templates/
│ └── index.html # Frontend HTML template
├── static/
│ └── style.css # CSS styling
Screen.Recording.2025-06-18.103345.mp4
- Python 3.8+
- Flask
- SQLite (used internally by Python)
- Clone the repository:
git clone https://github.com/solanki505/Employee-Payroll-System.git cd Employee-Payroll-System
2.Create a virtual environment and run:
pip install -r requirements.txt
python app.py