The Sports Statistics Application is a Python-based web application that displays and manages statistics for multiple sports such as Cricket, Football, Hockey, and Tennis. The project provides user and admin dashboards with sport-wise views using a clean UI.
This application demonstrates backend development using Python along with frontend integration using HTML, CSS, and JavaScript.
- User authentication (Login & Signup)
- Admin and User dashboards
- Sport-wise statistics pages:
- Cricket
- Football
- Hockey
- Tennis
- Clean UI using HTML, CSS, and JavaScript
- Backend logic handled using Python
- Modular project structure
- Python
- HTML, CSS, JavaScript
- Flask (if applicable)
- SQL / Database (via
db.py) - Git & GitHub
Sports Statistics/ ├── app.py ├── requirements.txt ├── utils/ │ └── db.py ├── templates/ │ ├── index.html │ ├── user_login.html │ ├── admin_login.html │ ├── signup.html │ ├── user_dashboard.html │ ├── admin_dashboard.html │ ├── cricket.html │ ├── football.html │ ├── hockey.html │ └── tennis.html ├── static/ │ ├── styles.css │ ├── script.js │ └── images/ └── .gitignore
- Clone the repository: git clone https://github.com/UtkarshPardhi/sports-statistics-application-python.git
- Navigate to the project directory: cd Sports-Statistics
- Install dependencies pip install -r requirements.txt
- Run the application python app.py
- Open the browser and access http://127.0.0.1:5000
➡️Practice Python backend development
➡️Understand project structuring
➡️Learn Git and GitHub workflow
➡️Build a resume-ready application
Utkarsh Dilip Pardhi GitHub: https://github.com/UtkarshPardhi
This project is built for learning and demonstration purposes.