File: types.pyi

package info (click to toggle)
typeshed 0.0~git20221107.4f381af-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 18,036 kB
  • sloc: python: 3,216; sh: 62; makefile: 13
file content (106 lines) | stat: -rw-r--r-- 2,049 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
from .sql.sqltypes import (
    ARRAY as ARRAY,
    BIGINT as BIGINT,
    BINARY as BINARY,
    BLOB as BLOB,
    BOOLEAN as BOOLEAN,
    CHAR as CHAR,
    CLOB as CLOB,
    DATE as DATE,
    DATETIME as DATETIME,
    DECIMAL as DECIMAL,
    FLOAT as FLOAT,
    INT as INT,
    INTEGER as INTEGER,
    JSON as JSON,
    NCHAR as NCHAR,
    NUMERIC as NUMERIC,
    NVARCHAR as NVARCHAR,
    REAL as REAL,
    SMALLINT as SMALLINT,
    TEXT as TEXT,
    TIME as TIME,
    TIMESTAMP as TIMESTAMP,
    VARBINARY as VARBINARY,
    VARCHAR as VARCHAR,
    BigInteger as BigInteger,
    Boolean as Boolean,
    Concatenable as Concatenable,
    Date as Date,
    DateTime as DateTime,
    Enum as Enum,
    Float as Float,
    Indexable as Indexable,
    Integer as Integer,
    Interval as Interval,
    LargeBinary as LargeBinary,
    MatchType as MatchType,
    NullType as NullType,
    Numeric as Numeric,
    PickleType as PickleType,
    SmallInteger as SmallInteger,
    String as String,
    Text as Text,
    Time as Time,
    TupleType as TupleType,
    Unicode as Unicode,
    UnicodeText as UnicodeText,
    _Binary as _Binary,
)
from .sql.type_api import (
    ExternalType as ExternalType,
    TypeDecorator as TypeDecorator,
    TypeEngine as TypeEngine,
    UserDefinedType as UserDefinedType,
)

__all__ = [
    "TypeEngine",
    "TypeDecorator",
    "UserDefinedType",
    "ExternalType",
    "INT",
    "CHAR",
    "VARCHAR",
    "NCHAR",
    "NVARCHAR",
    "TEXT",
    "Text",
    "FLOAT",
    "NUMERIC",
    "REAL",
    "DECIMAL",
    "TIMESTAMP",
    "DATETIME",
    "CLOB",
    "BLOB",
    "BINARY",
    "VARBINARY",
    "BOOLEAN",
    "BIGINT",
    "SMALLINT",
    "INTEGER",
    "DATE",
    "TIME",
    "TupleType",
    "String",
    "Integer",
    "SmallInteger",
    "BigInteger",
    "Numeric",
    "Float",
    "DateTime",
    "Date",
    "Time",
    "LargeBinary",
    "Boolean",
    "Unicode",
    "Concatenable",
    "UnicodeText",
    "PickleType",
    "Interval",
    "Enum",
    "Indexable",
    "ARRAY",
    "JSON",
]