https://github.com/kiruko1025/student_management_system
Django web app for student management
https://github.com/kiruko1025/student_management_system
django html python sql
Last synced: 6 months ago
JSON representation
Django web app for student management
- Host: GitHub
- URL: https://github.com/kiruko1025/student_management_system
- Owner: kiruko1025
- Created: 2024-10-26T10:10:45.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-26T17:39:42.000Z (over 1 year ago)
- Last Synced: 2025-03-06T16:48:54.534Z (over 1 year ago)
- Topics: django, html, python, sql
- Language: Python
- Homepage: https://www.everett.baby
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Student management web app written in Python with Django
Students can register login and take attendance
Admin can view or delete attendance, create or delete accounts
# How to install
## Linux
```
cd ./where_you_want_to_install
```
Clone the repository
```
git clone
```
Create a Python virtual environment
```
python -m venv venv
```
Source
```
source ./venv/bin/activate
```
Install required packages
```
pip install -r requirements.txt
```
# How to use