__init__.py

来自「SQLAlchemy. 经典的Python ORM框架。学习必看。」· Python 代码 · 共 35 行

PY
35
字号
# __init__.py# Copyright (C) 2005, 2006, 2007, 2008 Michael Bayer mike_mp@zzzcomputing.com## This module is part of SQLAlchemy and is released under# the MIT License: http://www.opensource.org/licenses/mit-license.phpimport inspectfrom sqlalchemy.types import \    BLOB, BOOLEAN, CHAR, CLOB, DATE, DATETIME, DECIMAL, FLOAT, INT, \    NCHAR, NUMERIC, SMALLINT, TEXT, TIME, TIMESTAMP, VARCHAR, \    Binary, Boolean, Date, DateTime, Float, Integer, Interval, Numeric, \    PickleType, SmallInteger, String, Text, Time, Unicode, UnicodeTextfrom sqlalchemy.sql import \    func, modifier, text, literal, literal_column, null, alias, \    and_, or_, not_, \    select, subquery, union, union_all, insert, update, delete, \    join, outerjoin, \    bindparam, outparam, asc, desc, \    except_, except_all, exists, intersect, intersect_all, \    between, case, cast, distinct, extractfrom sqlalchemy.schema import \    MetaData, ThreadLocalMetaData, Table, Column, ForeignKey, \    Sequence, Index, ForeignKeyConstraint, PrimaryKeyConstraint, \    CheckConstraint, UniqueConstraint, Constraint, \    PassiveDefault, ColumnDefault, DDLfrom sqlalchemy.engine import create_engine, engine_from_config__all__ = [ name for name, obj in locals().items()            if not (name.startswith('_') or inspect.ismodule(obj)) ]__version__ = '0.4.3'

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?