-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81c279d
commit 9335e28
Showing
7 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__pycache__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
web: gunicorn main:app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
python-3.7.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import nltk | ||
nltk.download('popular') |