-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp_one
More file actions
43 lines (34 loc) · 1.49 KB
/
Copy pathApp_one
File metadata and controls
43 lines (34 loc) · 1.49 KB
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
#https://github.com/miguelgrinberg
#https://github.com/PythonProgramming/PythonProgramming.net-Website
python 'pyflask/app1/PythonProgramming.net-Website/__init__.py'
#pip install Flask #ALREADY DONE
#source activate PyAlgo
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == "__main__":
app.run()
http://www.tutorialspoint.com/flask/flask_tutorial.pdf
https://ep2013.europython.eu/media/conference/slides/how-python-is-used-at-hyves.pdf
https://pythonhosted.org/Flask-WeasyPrint/
https://github.com/Kozea/Flask-WeasyPrint
https://ia800506.us.archive.org/17/items/ExploreFlask/ExploreFlask.pdf
https://exploreflask.com/en/latest/views.html
https://github.com/rpicard/explore-flask
http://www.cs.utexas.edu/~cannata/networking/Class%20Notes/07%20Designing%20a%20RESTful%20API%20with%20Python%20and%20Flask%20-%20miguelgrinberg.pdf
http://www.cc.gatech.edu/~simpkins/teaching/gatech/cs2316/slides/flask.pdf
http://www.marmakoide.org/download/teaching/asd/asd-flask-tutorial.pdf
http://cdn.cs50.net/2015/fall/seminars/flask/flask.pdf
http://www.marmakoide.org/download/teaching/asd/asd-flask-tutorial.pdf
https://channel9.msdn.com/Series/Introduction-to-Creating-Web-Sites-using-Python-and-Flask/01
###### PyCon 2015 Miguel Grinberg
#source activate PyAlgo
cd pyflask
cd app1
git clone https://github.com/miguelgrinberg/flask-pycon2015.git
cd flask-pycon2015
git checkout v0.1
python app.py
git checkout v0.2# change version henceforth app.py file also