?? __init__.py
字號:
# __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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -