Skip to content

Commit

Permalink
Added Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
naidukarthi2193 committed Apr 5, 2020
1 parent 81c279d commit 9335e28
Show file tree
Hide file tree
Showing 7 changed files with 61 additions and 0 deletions.
1 change: 1 addition & 0 deletions student_analysis/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__pycache__
37 changes: 37 additions & 0 deletions student_analysis/Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]

[packages]
click = "==7.1.1"
iplot = "==0.0.0"
itsdangerous = "==1.1.0"
joblib = "==0.14.1"
kiwisolver = "==1.2.0"
matplotlib = "==3.2.1"
nltk = "==3.4.5"
numpy = "==1.18.2"
pandas = "==1.0.3"
plot = "==0.6.5"
plotly = "==4.6.0"
pyparsing = "==2.4.6"
python-dateutil = "==2.8.1"
pytz = "==2019.3"
retrying = "==1.3.3"
scikit-learn = "==0.22.2.post1"
scipy = "==1.4.1"
six = "==1.14.0"
sklearn = "==0.0"
typing = "==3.7.4.1"
Cycler = "==0.10.0"
Flask = "==1.1.2"
Jinja2 = "==2.11.1"
MarkupSafe = "==1.1.1"
PyYAML = "==5.3.1"
Werkzeug = "==1.0.1"

[requires]
python_version = "3.6"
1 change: 1 addition & 0 deletions student_analysis/Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web: gunicorn main:app
19 changes: 19 additions & 0 deletions student_analysis/README.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Student Performance Analysis

This Flask website is a dashboard for keeping track of personal progress on http://arena.siesgst.ac.in/

![](demo.gif)

To execute application on Local Machine

### Install Dependencies
> pip install -r requirements.txt
### Initial Setup
>python setup.py
### Execute Code
>python main.py
### To view Dashboard (in Browser) goto following link once server starts
>http://localhost:5000/
Binary file added student_analysis/demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions student_analysis/runtime.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python-3.7.2
2 changes: 2 additions & 0 deletions student_analysis/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import nltk
nltk.download('popular')

0 comments on commit 9335e28

Please sign in to comment.