-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.py
44 lines (41 loc) · 1.23 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)
'''
File structure
SummPy
├── app
│ ├── blueprints
│ │ ├── BART
│ │ │ ├── summarize_doc.py
│ │ ├── about.py
│ │ ├── donate.py
│ │ ├── get_file_page.py
│ │ ├── get_file.py
│ │ ├── get_started.py
│ │ ├── home.py
│ │ ├── result.py
│ ├── static
│ │ ├── css
│ │ ├── images
│ │ ├── js
│ │ │ ├── get_file.js
│ │ ├── uploads
│ ├── templates
│ │ ├── about.html
│ │ ├── donate.html
│ │ ├── get_file_page.html
│ │ ├── get_file.html
│ │ ├── get_started.html
│ │ ├── home.html
│ │ ├── result.html
│ ├── testing data
│ ├── __init__.py -> initialize flask app
├── venv
├── .gitignore
├── app.py
├── LICENSE
├── README.md
├── requirements.txt
'''