rapidquery 0.1.0a1__cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
rapidquery/__init__.py
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
"""
|
|
2
|
+
**RapidQuery: High-Performance SQL Query Builder for Python**
|
|
3
|
+
|
|
4
|
+
RapidQuery is a powerful SQL query builder library designed for Python, combining
|
|
5
|
+
the simplicity of Python with the raw speed and safety of **Rust**. Build complex
|
|
6
|
+
SQL queries effortlessly and efficiently, with a library that prioritizes both
|
|
7
|
+
performance and ease of use.
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
from ._lib import ASTERISK as ASTERISK
|
|
11
|
+
from ._lib import AdaptedValue as AdaptedValue
|
|
12
|
+
from ._lib import AliasedTable as AliasedTable
|
|
13
|
+
from ._lib import AlterTable as AlterTable
|
|
14
|
+
from ._lib import AlterTableAddColumnOption as AlterTableAddColumnOption
|
|
15
|
+
from ._lib import AlterTableAddForeignKeyOption as AlterTableAddForeignKeyOption
|
|
16
|
+
from ._lib import AlterTableDropColumnOption as AlterTableDropColumnOption
|
|
17
|
+
from ._lib import AlterTableDropForeignKeyOption as AlterTableDropForeignKeyOption
|
|
18
|
+
from ._lib import AlterTableModifyColumnOption as AlterTableModifyColumnOption
|
|
19
|
+
from ._lib import AlterTableOptionMeta as AlterTableOptionMeta
|
|
20
|
+
from ._lib import AlterTableRenameColumnOption as AlterTableRenameColumnOption
|
|
21
|
+
from ._lib import ArrayType as ArrayType
|
|
22
|
+
from ._lib import BigIntegerType as BigIntegerType
|
|
23
|
+
from ._lib import BigUnsignedType as BigUnsignedType
|
|
24
|
+
from ._lib import BinaryType as BinaryType
|
|
25
|
+
from ._lib import BitType as BitType
|
|
26
|
+
from ._lib import BlobType as BlobType
|
|
27
|
+
from ._lib import BooleanType as BooleanType
|
|
28
|
+
from ._lib import CharType as CharType
|
|
29
|
+
from ._lib import CidrType as CidrType
|
|
30
|
+
from ._lib import Column as Column
|
|
31
|
+
from ._lib import ColumnRef as ColumnRef
|
|
32
|
+
from ._lib import ColumnTypeMeta as ColumnTypeMeta
|
|
33
|
+
from ._lib import DateTimeType as DateTimeType
|
|
34
|
+
from ._lib import DateType as DateType
|
|
35
|
+
from ._lib import DecimalType as DecimalType
|
|
36
|
+
from ._lib import Delete as Delete
|
|
37
|
+
from ._lib import DoubleType as DoubleType
|
|
38
|
+
from ._lib import DropIndex as DropIndex
|
|
39
|
+
from ._lib import DropTable as DropTable
|
|
40
|
+
from ._lib import EnumType as EnumType
|
|
41
|
+
from ._lib import Expr as Expr
|
|
42
|
+
from ._lib import FloatType as FloatType
|
|
43
|
+
from ._lib import ForeignKey as ForeignKey
|
|
44
|
+
from ._lib import FunctionCall as FunctionCall
|
|
45
|
+
from ._lib import INTERVAL_DAY as INTERVAL_DAY
|
|
46
|
+
from ._lib import INTERVAL_DAY_TO_HOUR as INTERVAL_DAY_TO_HOUR
|
|
47
|
+
from ._lib import INTERVAL_DAY_TO_MINUTE as INTERVAL_DAY_TO_MINUTE
|
|
48
|
+
from ._lib import INTERVAL_DAY_TO_SECOND as INTERVAL_DAY_TO_SECOND
|
|
49
|
+
from ._lib import INTERVAL_HOUR as INTERVAL_HOUR
|
|
50
|
+
from ._lib import INTERVAL_HOUR_TO_MINUTE as INTERVAL_HOUR_TO_MINUTE
|
|
51
|
+
from ._lib import INTERVAL_HOUR_TO_SECOND as INTERVAL_HOUR_TO_SECOND
|
|
52
|
+
from ._lib import INTERVAL_MINUTE as INTERVAL_MINUTE
|
|
53
|
+
from ._lib import INTERVAL_MINUTE_TO_SECOND as INTERVAL_MINUTE_TO_SECOND
|
|
54
|
+
from ._lib import INTERVAL_MONTH as INTERVAL_MONTH
|
|
55
|
+
from ._lib import INTERVAL_SECOND as INTERVAL_SECOND
|
|
56
|
+
from ._lib import INTERVAL_YEAR as INTERVAL_YEAR
|
|
57
|
+
from ._lib import INTERVAL_YEAR_TO_MONTH as INTERVAL_YEAR_TO_MONTH
|
|
58
|
+
from ._lib import Index as Index
|
|
59
|
+
from ._lib import IndexColumn as IndexColumn
|
|
60
|
+
from ._lib import InetType as InetType
|
|
61
|
+
from ._lib import Insert as Insert
|
|
62
|
+
from ._lib import IntegerType as IntegerType
|
|
63
|
+
from ._lib import IntervalType as IntervalType
|
|
64
|
+
from ._lib import JsonBinaryType as JsonBinaryType
|
|
65
|
+
from ._lib import JsonType as JsonType
|
|
66
|
+
from ._lib import LTreeType as LTreeType
|
|
67
|
+
from ._lib import MacAddressType as MacAddressType
|
|
68
|
+
from ._lib import MoneyType as MoneyType
|
|
69
|
+
from ._lib import OnConflict as OnConflict
|
|
70
|
+
from ._lib import QueryStatement as QueryStatement
|
|
71
|
+
from ._lib import RenameTable as RenameTable
|
|
72
|
+
from ._lib import SchemaStatement as SchemaStatement
|
|
73
|
+
from ._lib import Select as Select
|
|
74
|
+
from ._lib import SelectExpr as SelectExpr
|
|
75
|
+
from ._lib import SmallIntegerType as SmallIntegerType
|
|
76
|
+
from ._lib import SmallUnsignedType as SmallUnsignedType
|
|
77
|
+
from ._lib import StringType as StringType
|
|
78
|
+
from ._lib import Table as Table
|
|
79
|
+
from ._lib import TableName as TableName
|
|
80
|
+
from ._lib import TextType as TextType
|
|
81
|
+
from ._lib import TimeType as TimeType
|
|
82
|
+
from ._lib import TimestampType as TimestampType
|
|
83
|
+
from ._lib import TimestampWithTimeZoneType as TimestampWithTimeZoneType
|
|
84
|
+
from ._lib import TinyIntegerType as TinyIntegerType
|
|
85
|
+
from ._lib import TinyUnsignedType as TinyUnsignedType
|
|
86
|
+
from ._lib import TruncateTable as TruncateTable
|
|
87
|
+
from ._lib import UnsignedType as UnsignedType
|
|
88
|
+
from ._lib import Update as Update
|
|
89
|
+
from ._lib import UuidType as UuidType
|
|
90
|
+
from ._lib import VarBinaryType as VarBinaryType
|
|
91
|
+
from ._lib import VarBitType as VarBitType
|
|
92
|
+
from ._lib import VectorType as VectorType
|
|
93
|
+
from ._lib import YearType as YearType
|
|
94
|
+
from ._lib import _AliasedTableColumnsSequence as _AliasedTableColumnsSequence
|
|
95
|
+
from ._lib import _AsteriskType as _AsteriskType
|
|
96
|
+
from ._lib import _TableColumnsSequence as _TableColumnsSequence
|
|
97
|
+
from ._lib import all as all
|
|
98
|
+
from ._lib import any as any
|
|
99
|
+
from ._lib import not_ as not_
|
|
Binary file
|