Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,69 +1,8 @@
|
|
| 1 |
-
# app.py
|
| 2 |
import streamlit as st
|
| 3 |
-
from multipage import MultiPage
|
| 4 |
-
from pages import teacher_page, student_page
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
# Title and description
|
| 10 |
-
st.set_page_config(page_title="EduConnect", layout="wide")
|
| 11 |
-
|
| 12 |
-
# Add an image to the homepage
|
| 13 |
st.image("./images/education_banner.png", use_column_width=True)
|
| 14 |
|
| 15 |
-
st.title("π EduConnect: Platform for Teachers and Students")
|
| 16 |
-
st.markdown("Empowering teachers and students with seamless collaboration and learning.")
|
| 17 |
-
|
| 18 |
-
# Add pages to the app
|
| 19 |
-
app.add_page("Teacher's Portal", teacher_page.app)
|
| 20 |
-
app.add_page("Student's Hub", student_page.app)
|
| 21 |
-
|
| 22 |
-
# Run the app
|
| 23 |
-
app.run()
|
| 24 |
-
|
| 25 |
-
# README.md
|
| 26 |
-

|
| 27 |
-
|
| 28 |
-
# EduConnect
|
| 29 |
-
EduConnect is a platform designed to bridge the gap between teachers and students, offering seamless interaction, assignment management, and educational tools.
|
| 30 |
-
|
| 31 |
-
## Features
|
| 32 |
-
- π Upload and manage course materials
|
| 33 |
-
- π§βπ« Teacher's Portal for assignments and monitoring
|
| 34 |
-
- π Student's Hub for accessing learning resources and submitting assignments
|
| 35 |
-
- π Monitor progress and conduct quizzes
|
| 36 |
-
|
| 37 |
-
## How to Run
|
| 38 |
-
1. Clone the repository
|
| 39 |
-
2. Install dependencies:
|
| 40 |
-
```
|
| 41 |
-
pip install -r requirements.txt
|
| 42 |
-
```
|
| 43 |
-
3. Run the app:
|
| 44 |
-
```
|
| 45 |
-
streamlit run app.py
|
| 46 |
-
```
|
| 47 |
-
|
| 48 |
-
## Screenshots
|
| 49 |
-
### Homepage
|
| 50 |
-

|
| 51 |
-
|
| 52 |
-
### Teacher's Portal
|
| 53 |
-

|
| 54 |
-
|
| 55 |
-
### Student's Hub
|
| 56 |
-

|
| 57 |
-
|
| 58 |
-
## Requirements
|
| 59 |
-
```
|
| 60 |
-
streamlit
|
| 61 |
-
pandas
|
| 62 |
-
numpy
|
| 63 |
-
```
|
| 64 |
|
| 65 |
-
Ensure you have images stored in the `images` folder:
|
| 66 |
-
- `education_banner.png` for the homepage
|
| 67 |
-
- `homepage.png` for homepage screenshot
|
| 68 |
-
- `teacher_portal.png` for teacher's portal screenshot
|
| 69 |
-
- `student_hub.png` for student's hub screenshot
|
|
|
|
|
|
|
| 1 |
import streamlit as st
|
|
|
|
|
|
|
| 2 |
|
| 3 |
+
def app():
|
| 4 |
+
st.title("π©βπ« Teacher's Portal")
|
| 5 |
+
st.write("Welcome to the teacher's portal!")
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
st.image("./images/education_banner.png", use_column_width=True)
|
| 7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|