File: __init__.py

package info (click to toggle)
flask-flatpages 0.8.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 300 kB
  • sloc: python: 1,054; makefile: 150
file content (17 lines) | stat: -rw-r--r-- 527 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""

Flask-FlatPages provides a collection of pages to your Flask application.

Pages are built from "flat" text files as opposed to a relational database.

:copyright: (c) 2010-2015 by Simon Sapin, 2013-2015 by Igor Davydenko.
:license: BSD, see LICENSE for more details.
"""

from .flatpages import FlatPages  # noqa
from .page import Page  # noqa
from .utils import pygmented_markdown, pygments_style_defs  # noqa

__author__ = "Simon Sapin, Igor Davydenko, Padraic Calpin"
__license__ = "BSD License"
__version__ = "0.8.3"