Files @ 525ed90e4577
Branch filter:

Location: kallithea/pylons_app/dbmodel/__init__.py

Marcin Kuzminski
major app speedup moved the wsgi creation to app globals, in order to make it run only once.
little config changes.
1
2
3
4
5
6
7
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relation, backref
from sqlalchemy import ForeignKey, Column, Table, Sequence
from sqlalchemy.types import *
from sqlalchemy.databases.mysql import *
from sqlalchemy.databases.postgres import *
from pylons_app.model.meta import Base