def validate_iid(iid):
pass
def get_action_id(action_name):
pass
def form_error_to_json(view_func):
pass
def validate_iid(iid):
pass
def get_action_id(action_name):
pass
def form_error_to_json(view_func):
pass
http://stackoverflow.com/questions/13706382/how-to-get-static-files-in-flask-without-url-forstatic-file-name-xxx | |
You can Setup your own route to serve static | |
files. Add this method and update the static path director in the send_from_directory method and your img tag should work. | |
@app.route('/pic/<path:filename>') | |
def send_pic(filename): | |
return send_from_directory('/path/to/static/files', filename) | |
For a production app however, you should setup your server to serve static files directly. |
import time | |
class cached_property(object): | |
'''Decorator for read-only properties evaluated only once within TTL period. | |
src http://wiki.python.org/moin/PythonDecoratorLibrary#Cached_Properties | |
It can be used to created a cached property like this:: | |
import random |
import datetime | |
yestoday = datetime.date.today() - datetime.timedelta(days=1) | |
print yestoday | |
yestoday_datetime = datetime.datetime.combine(yestoday, datetime.time.min) | |
print yestoday_datetime | |
yestoday_datetime = datetime.datetime.combine(yestoday, datetime.time()) | |
print yestoday_datetime |
#http://stackoverflow.com/questions/7075828/make-sqlalchemy-use-date-in-filter-using-postgresql | |
from sqlalchemy import Date, cast | |
from datetime import date | |
my_date = (session.query(MyObject) | |
.filter(cast(MyObject.date_time, Date) == date.today()) | |
.all()) | |