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













	
Exemple #2
0
def univpic(key):
    uploaded_data = gdb.get(key)
    return app.response_class(uploaded_data.photo)
Exemple #3
0
def shows(key):
	uploaded_data = db.get(key)
	return app.response_class(uploaded_data.photo)
#if __name__ == "__main__":
#	app.run()
def photo_get(blob_key):
    uploaded_photo = db.get(blob_key)
    return app.response_class(uploaded_photo.photo)
Exemple #5
0
def shows(key):
	upload_data = db.get(key)
	return app.response_class(upload_data.image)
Exemple #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)
Exemple #7
0
def shows(key):
    uploaded_data = db.get(key)
    return app.response_class(uploaded_data.photo)
Exemple #8
0
def univpic(key):
	uploaded_data = gdb.get(key)
	return app.response_class(uploaded_data.photo)
Exemple #9
0
def memos(key):
	uploaded_data = db.get(key)
	return app.response_class(uploaded_data)
Exemple #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)