mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-11-07 01:52:11 +00:00
Initial Configuration Push
This commit is contained in:
78
deps/sqlalchemy/types.py
vendored
Normal file
78
deps/sqlalchemy/types.py
vendored
Normal file
@@ -0,0 +1,78 @@
|
||||
# types.py
|
||||
# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
|
||||
# <see AUTHORS file>
|
||||
#
|
||||
# This module is part of SQLAlchemy and is released under
|
||||
# the MIT License: http://www.opensource.org/licenses/mit-license.php
|
||||
|
||||
"""Compatibility namespace for sqlalchemy.sql.types.
|
||||
|
||||
"""
|
||||
|
||||
__all__ = ['TypeEngine', 'TypeDecorator', 'UserDefinedType',
|
||||
'INT', 'CHAR', 'VARCHAR', 'NCHAR', 'NVARCHAR', 'TEXT', 'Text',
|
||||
'FLOAT', 'NUMERIC', 'REAL', 'DECIMAL', 'TIMESTAMP', 'DATETIME',
|
||||
'CLOB', 'BLOB', 'BINARY', 'VARBINARY', 'BOOLEAN', 'BIGINT',
|
||||
'SMALLINT', 'INTEGER', 'DATE', 'TIME', 'String', 'Integer',
|
||||
'SmallInteger', 'BigInteger', 'Numeric', 'Float', 'DateTime',
|
||||
'Date', 'Time', 'LargeBinary', 'Binary', 'Boolean', 'Unicode',
|
||||
'Concatenable', 'UnicodeText', 'PickleType', 'Interval', 'Enum']
|
||||
|
||||
from .sql.type_api import (
|
||||
adapt_type,
|
||||
TypeEngine,
|
||||
TypeDecorator,
|
||||
Variant,
|
||||
to_instance,
|
||||
UserDefinedType
|
||||
)
|
||||
from .sql.sqltypes import (
|
||||
BIGINT,
|
||||
BINARY,
|
||||
BLOB,
|
||||
BOOLEAN,
|
||||
BigInteger,
|
||||
Binary,
|
||||
_Binary,
|
||||
Boolean,
|
||||
CHAR,
|
||||
CLOB,
|
||||
Concatenable,
|
||||
DATE,
|
||||
DATETIME,
|
||||
DECIMAL,
|
||||
Date,
|
||||
DateTime,
|
||||
Enum,
|
||||
FLOAT,
|
||||
Float,
|
||||
INT,
|
||||
INTEGER,
|
||||
Integer,
|
||||
Interval,
|
||||
LargeBinary,
|
||||
MatchType,
|
||||
NCHAR,
|
||||
NVARCHAR,
|
||||
NullType,
|
||||
NULLTYPE,
|
||||
NUMERIC,
|
||||
Numeric,
|
||||
PickleType,
|
||||
REAL,
|
||||
SchemaType,
|
||||
SMALLINT,
|
||||
SmallInteger,
|
||||
String,
|
||||
STRINGTYPE,
|
||||
TEXT,
|
||||
TIME,
|
||||
TIMESTAMP,
|
||||
Text,
|
||||
Time,
|
||||
Unicode,
|
||||
UnicodeText,
|
||||
VARBINARY,
|
||||
VARCHAR,
|
||||
_type_map
|
||||
)
|
||||
Reference in New Issue
Block a user