Skip to content

Commit 7f134d9

Browse files
author
Bill Prin
committed
Update Reqs
1 parent 3fd9905 commit 7f134d9

File tree

38 files changed

+73
-67
lines changed

38 files changed

+73
-67
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Flask==0.10.1
1+
Flask==0.11.1
22
gunicorn==19.6.0
33
requests[security]==2.10.0
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Flask==0.10.1
1+
Flask==0.11.1
22
Flask-SQLAlchemy==2.1
33
gunicorn==19.6.0
4-
PyMySQL==0.7.3
4+
PyMySQL==0.7.4
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Flask==0.10.1
2-
gcloud==0.14.0
1+
Flask==0.11.1
2+
gcloud==0.16.1
33
gunicorn==19.6.0
4-
oauth2client==2.1.0
4+
oauth2client==2.2.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Flask==0.10.1
1+
Flask==0.11.1
22
gunicorn==19.6.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Django==1.10a1
1+
Django==1.10b1
22
mysqlclient==1.3.7
33
wheel==0.29.0
44
gunicorn==19.6.0
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Flask==0.10.1
1+
Flask==0.11.1
22
gunicorn==19.6.0
3-
gcloud==0.14.0
3+
gcloud==0.16.1
44
six==1.10.0
55
pyyaml==3.11
66
requests==2.10.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Flask==0.10.1
1+
Flask==0.11.1
22
gunicorn==19.6.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Flask==0.10.1
1+
Flask==0.11.1

appengine/flexible/hello_world/main.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,22 @@
1414

1515
# [START app]
1616
import logging
17+
import random
18+
import string
1719

18-
from flask import Flask
20+
from flask import Flask, session
1921

2022

2123
app = Flask(__name__)
24+
app.config['SECRET_KEY']='test'
2225

2326

2427
@app.route('/')
2528
def hello():
2629
"""Return a friendly HTTP greeting."""
30+
f = open('/tmp/thisisawesoem.txt', 'w')
31+
f.write("hello world")
32+
f.close()
2733
return 'Hello World!'
2834

2935

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Flask==0.10.1
1+
Flask==0.11.1
22
gunicorn==19.6.0

0 commit comments

Comments
 (0)