代码搜索:SQLAlchemy
找到约 184 项符合「SQLAlchemy」的源代码
代码结果 184
www.eeworm.com/read/280962/4121105
py logging.py
# logging.py - adapt python logging module to SQLAlchemy
# Copyright (C) 2006, 2007, 2008 Michael Bayer mike_mp@zzzcomputing.com
#
# This module is part of SQLAlchemy and is released under
# the MIT L
www.eeworm.com/read/280962/4121194
py sessions.py
import testenv; testenv.configure_for_tests()
from sqlalchemy import *
from sqlalchemy.orm import *
from testlib import *
from testlib import fixtures
import gc
# in this test we are specifically loo
www.eeworm.com/read/280962/4121272
py magazine.py
import testenv; testenv.configure_for_tests()
from sqlalchemy import *
from sqlalchemy.orm import *
from testlib import *
class BaseObject(object):
def __init__(self, *args, **kwargs):
f
www.eeworm.com/read/280962/4121277
py concrete.py
import testenv; testenv.configure_for_tests()
from sqlalchemy import *
from sqlalchemy.orm import *
from testlib import *
class ConcreteTest(ORMTest):
def define_tables(self, metadata):
g
www.eeworm.com/read/280962/4121278
py polymorph.py
"""tests basic polymorphic mapper loading/saving, minimal relations"""
import testenv; testenv.configure_for_tests()
import sets
from sqlalchemy import *
from sqlalchemy.orm import *
from testlib imp
www.eeworm.com/read/280962/4121097
py selectresults.py
from sqlalchemy.ext.selectresults import SelectResultsExt
from sqlalchemy.orm.mapper import global_extensions
def install_plugin():
global_extensions.append(SelectResultsExt)
install_plugin()
www.eeworm.com/read/280962/4121151
py concrete.py
from sqlalchemy import *
from sqlalchemy.orm import *
metadata = MetaData()
managers_table = Table('managers', metadata,
Column('employee_id', Integer, primary_key=True),
Column('name', Str
www.eeworm.com/read/280962/4121174
py gen_docstrings.py
from toc import TOCElement
import docstring
import re
from sqlalchemy import schema, types, engine, sql, pool, orm, exceptions, databases, interfaces
from sqlalchemy.sql import compiler, expression
f
www.eeworm.com/read/280962/4121190
py cascade_speed.py
import testenv; testenv.simple_setup()
from sqlalchemy import *
from sqlalchemy.orm import *
from timeit import Timer
import sys
meta = MetaData()
orders = Table('orders', meta,
Column('id', In
www.eeworm.com/read/280962/4121243
py eager_relations.py
"""basic tests of eager loaded attributes"""
import testenv; testenv.configure_for_tests()
from sqlalchemy import *
from sqlalchemy.orm import *
from testlib import *
from testlib.fixtures import *
f