flask/flask/__init__.py

51 lines
1.6 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
"""
flask
~~~~~
A microframework based on Werkzeug. It's extensively documented
and follows best practice patterns.
2011-09-01 16:57:00 +02:00
:copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
2012-08-11 02:37:03 +01:00
__version__ = '0.10-dev'
2011-06-27 00:31:24 +02:00
# utilities we import from Werkzeug and Jinja2 that are unused
# in the module but are exported as public interface.
2011-07-15 18:03:48 +02:00
from werkzeug.exceptions import abort
from werkzeug.utils import redirect
from jinja2 import Markup, escape
from .app import Flask, Request, Response
from .config import Config
from .helpers import url_for, flash, send_file, send_from_directory, \
get_flashed_messages, get_template_attribute, make_response, safe_join, \
2012-06-27 15:06:39 +01:00
stream_with_context
from .globals import current_app, g, request, session, _request_ctx_stack, \
_app_ctx_stack
2012-05-08 13:14:32 +01:00
from .ctx import has_request_context, has_app_context, \
after_this_request, copy_current_request_context
from .module import Module
2011-05-29 20:05:39 +02:00
from .blueprints import Blueprint
from .templating import render_template, render_template_string
2010-07-17 14:39:28 +02:00
# the signals
from .signals import signals_available, template_rendered, request_started, \
request_finished, got_request_exception, request_tearing_down, \
appcontext_tearing_down, appcontext_pushed, \
appcontext_popped, message_flashed
2010-07-17 14:39:28 +02:00
# We're not exposing the actual json module but a convenient wrapper around
# it.
from . import json
# This was the only thing that flask used to export at one point and it had
# a more generic name.
jsonify = json.jsonify
2011-07-07 13:14:15 +02:00
# backwards compat, goes away in 1.0
from .sessions import SecureCookieSession as Session
2012-08-11 03:11:40 +01:00
json_available = True