root/galaxy-central/eggs/SQLAlchemy-0.5.6_dev_r6498-py2.6.egg/sqlalchemy/__init__.py @ 3

リビジョン 3, 1.8 KB (コミッタ: kohda, 14 年 前)

Install Unix tools  http://hannonlab.cshl.edu/galaxy_unix_tools/galaxy.html

行番号 
1# __init__.py
2# Copyright (C) 2005, 2006, 2007, 2008, 2009 Michael Bayer mike_mp@zzzcomputing.com
3#
4# This module is part of SQLAlchemy and is released under
5# the MIT License: http://www.opensource.org/licenses/mit-license.php
6
7import inspect
8import sys
9
10import sqlalchemy.exc as exceptions
11sys.modules['sqlalchemy.exceptions'] = exceptions
12
13from sqlalchemy.types import (
14    BLOB,
15    BOOLEAN,
16    Binary,
17    Boolean,
18    CHAR,
19    CLOB,
20    DATE,
21    DATETIME,
22    DECIMAL,
23    Date,
24    DateTime,
25    FLOAT,
26    Float,
27    INT,
28    Integer,
29    Interval,
30    NCHAR,
31    NUMERIC,
32    Numeric,
33    PickleType,
34    SMALLINT,
35    SmallInteger,
36    String,
37    TEXT,
38    TIME,
39    TIMESTAMP,
40    Text,
41    Time,
42    Unicode,
43    UnicodeText,
44    VARCHAR,
45    )
46
47from sqlalchemy.sql import (
48    alias,
49    and_,
50    asc,
51    between,
52    bindparam,
53    case,
54    cast,
55    collate,
56    delete,
57    desc,
58    distinct,
59    except_,
60    except_all,
61    exists,
62    extract,
63    func,
64    insert,
65    intersect,
66    intersect_all,
67    join,
68    literal,
69    literal_column,
70    modifier,
71    not_,
72    null,
73    or_,
74    outerjoin,
75    outparam,
76    select,
77    subquery,
78    text,
79    union,
80    union_all,
81    update,
82    )
83
84from sqlalchemy.schema import (
85    CheckConstraint,
86    Column,
87    ColumnDefault,
88    Constraint,
89    DDL,
90    DefaultClause,
91    FetchedValue,
92    ForeignKey,
93    ForeignKeyConstraint,
94    Index,
95    MetaData,
96    PassiveDefault,
97    PrimaryKeyConstraint,
98    Sequence,
99    Table,
100    ThreadLocalMetaData,
101    UniqueConstraint,
102    )
103
104from sqlalchemy.engine import create_engine, engine_from_config
105
106
107__all__ = sorted(name for name, obj in locals().items()
108                 if not (name.startswith('_') or inspect.ismodule(obj)))
109                 
110__version__ = '0.5.6'
111
112del inspect, sys
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。