Esempio n. 1
0
def shows(key):
	uploaded_data = db.get(key)
	return app.response_class(uploaded_data.photo)













	
Esempio n. 2
0
def univpic(key):
    uploaded_data = gdb.get(key)
    return app.response_class(uploaded_data.photo)
Esempio n. 3
0
def shows(key):
	uploaded_data = db.get(key)
	return app.response_class(uploaded_data.photo)
#if __name__ == "__main__":
#	app.run()
Esempio n. 4
0
def photo_get(blob_key):
    uploaded_photo = db.get(blob_key)
    return app.response_class(uploaded_photo.photo)
Esempio n. 5
0
def shows(key):
	upload_data = db.get(key)
	return app.response_class(upload_data.image)
Esempio n. 6
0
def show(key):
    upload_data = db.get(key)
    # We gives the 'key' to the showing function.
    # Then the variable 'upload_data' points that filestream with 'key'
    return app.response_class(upload_data.photo)
Esempio n. 7
0
def shows(key):
    uploaded_data = db.get(key)
    return app.response_class(uploaded_data.photo)
Esempio n. 8
0
def univpic(key):
	uploaded_data = gdb.get(key)
	return app.response_class(uploaded_data.photo)
Esempio n. 9
0
def memos(key):
	uploaded_data = db.get(key)
	return app.response_class(uploaded_data)
Esempio n. 10
0
def show(key):
    upload_data = db.get(key)
    # We gives the 'key' to the showing function.
    # Then the variable 'upload_data' points that filestream with 'key'
    return app.response_class(upload_data.photo)