You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cookie-api/wsgi.py

15 lines
287 B
Python

try:
import psycopg2
except ImportError:
# Fall back to psycopg2cffi
from psycopg2cffi import compat
compat.register()
from cookie_api import application_factory
from config import settings
app = application_factory(settings)
if __name__ == "__main__":
app.main()