Lines 23-29
Link Here
|
23 |
|
23 |
|
24 |
import logging |
24 |
import logging |
25 |
|
25 |
|
26 |
from sqlalchemy.orm.interfaces import AttributeExtension, InstrumentationManager |
26 |
from sqlalchemy.orm.interfaces import AttributeExtension |
|
|
27 |
try: |
28 |
# sql alchemy 0.8 (and above) |
29 |
from sqlalchemy.ext.instrumentation import InstrumentationManager |
30 |
except: |
31 |
# sql alchemy 0.7 |
32 |
from sqlalchemy.orm.interfaces import InstrumentationManager |
27 |
from sqlalchemy.orm import ColumnProperty |
33 |
from sqlalchemy.orm import ColumnProperty |
28 |
from sqlalchemy.types import String |
34 |
from sqlalchemy.types import String |
29 |
|
35 |
|