mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-19 23:21:57 -04:00
17 lines
518 B
Python
17 lines
518 B
Python
# __init__.py
|
|
# Copyright (C) 2005, 2006, 2007 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.php
|
|
|
|
from sqlalchemy.types import *
|
|
from sqlalchemy.sql import *
|
|
from sqlalchemy.schema import *
|
|
from sqlalchemy.orm import *
|
|
|
|
from sqlalchemy.engine import create_engine
|
|
from sqlalchemy.schema import default_metadata
|
|
|
|
def global_connect(*args, **kwargs):
|
|
default_metadata.connect(*args, **kwargs)
|
|
|