Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anubagre/flask-based-exam-result-checker
This is my first project using Flask, created for practice purposes. The website allows users to input marks for four subjects and calculates the overall percentage to determine if the student has passed the exam.
https://github.com/anubagre/flask-based-exam-result-checker
css flask html python result-checker webapp
Last synced: about 9 hours ago
JSON representation
This is my first project using Flask, created for practice purposes. The website allows users to input marks for four subjects and calculates the overall percentage to determine if the student has passed the exam.
- Host: GitHub
- URL: https://github.com/anubagre/flask-based-exam-result-checker
- Owner: anubagre
- Created: 2024-09-10T17:34:19.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-13T17:09:05.000Z (5 months ago)
- Last Synced: 2025-02-10T23:58:09.601Z (about 9 hours ago)
- Topics: css, flask, html, python, result-checker, webapp
- Language: HTML
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask-Based Exam Result Checker
## Description
This is my first project using Flask, created for practice purposes. The website allows users to input marks for four subjects (Science, Maths, English and Hindi) and calculates the overall percentage to determine if the student has passed the exam.## Running the Project Locally
To run this Flask-based Exam Result Checker locally, follow these steps:
### Prerequisites
- **Python 3.x** installed on your system.
- **pip** (Python package installer) installed.
- **Virtualenv** installed (optional but recommended).### Setup
1. **Clone the Repository:**
```bash
git clone https://github.com/anubagre/Flask-Based-Exam-Result-Checker.git
cd Flask-Based-Exam-Result-Checker2. **Create a Virtual Environment:** It’s a good practice to use a virtual environment to manage dependencies.
```bash
python -m venv venv3. **Activate the Virtual Environment:**
On Windows:
```bash
venv\Scripts\activate4. **Install Dependencies:**
```bash
pip install -r requirements.txt5. **Running the Application:** Set the FLASK_APP Environment Variable
On Windows:
```bash
set FLASK_APP=app.py6. **Run the Flask Development Server:**
```bash
flask runAccess the Application: Open your web browser and go to http://127.0.0.1:5000.