sqlalchemy-cratedb 0.36.0__py2.py3-none-any.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.
- sqlalchemy_cratedb/__init__.py +59 -0
- sqlalchemy_cratedb/compat/__init__.py +0 -0
- sqlalchemy_cratedb/compat/api13.py +156 -0
- sqlalchemy_cratedb/compat/core10.py +264 -0
- sqlalchemy_cratedb/compat/core14.py +359 -0
- sqlalchemy_cratedb/compat/core20.py +447 -0
- sqlalchemy_cratedb/compiler.py +319 -0
- sqlalchemy_cratedb/dialect.py +372 -0
- sqlalchemy_cratedb/predicate.py +99 -0
- sqlalchemy_cratedb/sa_version.py +28 -0
- sqlalchemy_cratedb/support.py +62 -0
- sqlalchemy_cratedb/type/__init__.py +3 -0
- sqlalchemy_cratedb/type/array.py +144 -0
- sqlalchemy_cratedb/type/geo.py +48 -0
- sqlalchemy_cratedb/type/object.py +92 -0
- sqlalchemy_cratedb-0.36.0.dist-info/LICENSE +178 -0
- sqlalchemy_cratedb-0.36.0.dist-info/METADATA +137 -0
- sqlalchemy_cratedb-0.36.0.dist-info/NOTICE +24 -0
- sqlalchemy_cratedb-0.36.0.dist-info/RECORD +22 -0
- sqlalchemy_cratedb-0.36.0.dist-info/WHEEL +6 -0
- sqlalchemy_cratedb-0.36.0.dist-info/entry_points.txt +2 -0
- sqlalchemy_cratedb-0.36.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,137 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: sqlalchemy-cratedb
|
3
|
+
Version: 0.36.0
|
4
|
+
Summary: SQLAlchemy dialect for CrateDB.
|
5
|
+
Author-email: "Crate.io" <office@crate.io>
|
6
|
+
License: Apache License 2.0
|
7
|
+
Project-URL: changelog, https://github.com/crate-workbench/sqlalchemy-cratedb/blob/main/CHANGES.md
|
8
|
+
Project-URL: documentation, https://github.com/crate-workbench/sqlalchemy-cratedb
|
9
|
+
Project-URL: homepage, https://github.com/crate-workbench/sqlalchemy-cratedb
|
10
|
+
Project-URL: repository, https://github.com/crate-workbench/sqlalchemy-cratedb
|
11
|
+
Keywords: CrateDB,dask,data io,orm,pandas,PostgreSQL,rdbms,sql,SQLAlchemy
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
13
|
+
Classifier: Environment :: Console
|
14
|
+
Classifier: Intended Audience :: Customer Service
|
15
|
+
Classifier: Intended Audience :: Developers
|
16
|
+
Classifier: Intended Audience :: Education
|
17
|
+
Classifier: Intended Audience :: End Users/Desktop
|
18
|
+
Classifier: Intended Audience :: Information Technology
|
19
|
+
Classifier: Intended Audience :: Manufacturing
|
20
|
+
Classifier: Intended Audience :: Science/Research
|
21
|
+
Classifier: Intended Audience :: System Administrators
|
22
|
+
Classifier: Intended Audience :: Telecommunications Industry
|
23
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
24
|
+
Classifier: Operating System :: OS Independent
|
25
|
+
Classifier: Operating System :: POSIX :: Linux
|
26
|
+
Classifier: Operating System :: Unix
|
27
|
+
Classifier: Programming Language :: Python
|
28
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
29
|
+
Classifier: Programming Language :: Python :: 3.6
|
30
|
+
Classifier: Programming Language :: Python :: 3.7
|
31
|
+
Classifier: Programming Language :: Python :: 3.8
|
32
|
+
Classifier: Programming Language :: Python :: 3.9
|
33
|
+
Classifier: Programming Language :: Python :: 3.10
|
34
|
+
Classifier: Programming Language :: Python :: 3.11
|
35
|
+
Classifier: Programming Language :: Python :: 3.12
|
36
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
37
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
38
|
+
Classifier: Programming Language :: SQL
|
39
|
+
Classifier: Topic :: Adaptive Technologies
|
40
|
+
Classifier: Topic :: Communications
|
41
|
+
Classifier: Topic :: Database
|
42
|
+
Classifier: Topic :: Documentation
|
43
|
+
Classifier: Topic :: Education
|
44
|
+
Classifier: Topic :: Internet
|
45
|
+
Classifier: Topic :: Office/Business
|
46
|
+
Classifier: Topic :: Scientific/Engineering
|
47
|
+
Classifier: Topic :: Software Development :: Libraries
|
48
|
+
Classifier: Topic :: Software Development :: Pre-processors
|
49
|
+
Classifier: Topic :: Software Development :: Testing
|
50
|
+
Classifier: Topic :: Software Development :: Version Control
|
51
|
+
Classifier: Topic :: System :: Archiving
|
52
|
+
Classifier: Topic :: System :: Benchmark
|
53
|
+
Classifier: Topic :: System :: Clustering
|
54
|
+
Classifier: Topic :: System :: Distributed Computing
|
55
|
+
Classifier: Topic :: System :: Logging
|
56
|
+
Classifier: Topic :: System :: Monitoring
|
57
|
+
Classifier: Topic :: System :: Networking
|
58
|
+
Classifier: Topic :: System :: Systems Administration
|
59
|
+
Classifier: Topic :: Text Processing
|
60
|
+
Classifier: Topic :: Utilities
|
61
|
+
Requires-Python: >=3.6
|
62
|
+
Description-Content-Type: text/markdown
|
63
|
+
License-File: LICENSE
|
64
|
+
License-File: NOTICE
|
65
|
+
Requires-Dist: crate
|
66
|
+
Requires-Dist: geojson <4,>=2.5
|
67
|
+
Requires-Dist: sqlalchemy <2.1,>=1
|
68
|
+
Requires-Dist: verlib2 ==0.2
|
69
|
+
Requires-Dist: backports.zoneinfo <1 ; python_version < "3.9"
|
70
|
+
Requires-Dist: importlib-resources ; python_version < "3.9"
|
71
|
+
Provides-Extra: develop
|
72
|
+
Requires-Dist: black <25 ; extra == 'develop'
|
73
|
+
Requires-Dist: mypy <1.11 ; extra == 'develop'
|
74
|
+
Requires-Dist: poethepoet <0.27 ; extra == 'develop'
|
75
|
+
Requires-Dist: pyproject-fmt <2.2 ; extra == 'develop'
|
76
|
+
Requires-Dist: ruff <0.5 ; extra == 'develop'
|
77
|
+
Requires-Dist: validate-pyproject <0.19 ; extra == 'develop'
|
78
|
+
Provides-Extra: doc
|
79
|
+
Requires-Dist: crate-docs-theme >=0.26.5 ; extra == 'doc'
|
80
|
+
Requires-Dist: sphinx <8,>=3.5 ; extra == 'doc'
|
81
|
+
Provides-Extra: release
|
82
|
+
Requires-Dist: build <2 ; extra == 'release'
|
83
|
+
Requires-Dist: twine <6 ; extra == 'release'
|
84
|
+
Provides-Extra: test
|
85
|
+
Requires-Dist: dask[dataframe] ; extra == 'test'
|
86
|
+
Requires-Dist: pandas <2.3 ; extra == 'test'
|
87
|
+
Requires-Dist: pueblo >=0.0.7 ; extra == 'test'
|
88
|
+
Requires-Dist: pytest <9 ; extra == 'test'
|
89
|
+
Requires-Dist: pytest-cov <6 ; extra == 'test'
|
90
|
+
Requires-Dist: pytest-mock <4 ; extra == 'test'
|
91
|
+
|
92
|
+
# SQLAlchemy dialect for CrateDB
|
93
|
+
|
94
|
+
[](https://github.com/crate-workbench/sqlalchemy-cratedb/actions/workflows/tests.yml)
|
95
|
+
[](https://app.codecov.io/gh/crate-workbench/sqlalchemy-cratedb)
|
96
|
+
[](https://crate.io/docs/python/)
|
97
|
+
[](https://pypi.org/project/sqlalchemy-cratedb/)
|
98
|
+
[](https://pypi.org/project/sqlalchemy-cratedb/)
|
99
|
+
[](https://pypi.org/project/sqlalchemy-cratedb/)
|
100
|
+
[](https://pypi.org/project/sqlalchemy-cratedb/)
|
101
|
+
[](https://pypi.org/project/sqlalchemy-cratedb/)
|
102
|
+
[](https://pypi.org/project/sqlalchemy-cratedb/)
|
103
|
+
|
104
|
+
|
105
|
+
## About
|
106
|
+
|
107
|
+
The [SQLAlchemy] dialect for [CrateDB], based on the HTTP-based DBAPI client
|
108
|
+
library [crate-python].
|
109
|
+
|
110
|
+
## Installation
|
111
|
+
|
112
|
+
The package is available from [PyPI] at [sqlalchemy-cratedb].
|
113
|
+
To install the most recent version, run:
|
114
|
+
```shell
|
115
|
+
pip install --upgrade sqlalchemy-cratedb
|
116
|
+
```
|
117
|
+
|
118
|
+
## Documentation and help
|
119
|
+
|
120
|
+
- [CrateDB Python Client documentation](https://crate.io/docs/python/)
|
121
|
+
- [CrateDB reference documentation](https://crate.io/docs/reference/)
|
122
|
+
- [Developer documentation](DEVELOP.md)
|
123
|
+
- [Contributing](CONTRIBUTING.md)
|
124
|
+
- Other [support channels](https://crate.io/support/)
|
125
|
+
|
126
|
+
## Contributing
|
127
|
+
|
128
|
+
The SQLAlchemy dialect for CrateDB is an open source project, and is
|
129
|
+
[managed on GitHub](https://github.com/crate-workbench/sqlalchemy-cratedb). We
|
130
|
+
appreciate contributions of any kind.
|
131
|
+
|
132
|
+
|
133
|
+
[CrateDB]: https://github.com/crate/crate
|
134
|
+
[crate-python]: https://github.com/crate/crate-python
|
135
|
+
[SQLAlchemy]: https://www.sqlalchemy.org
|
136
|
+
[sqlalchemy-cratedb]: https://pypi.org/project/sqlalchemy-cratedb/
|
137
|
+
[PyPI]: https://pypi.org/
|
@@ -0,0 +1,24 @@
|
|
1
|
+
SQLALchemy dialect for CrateDB
|
2
|
+
Copyright 2013-2023 Crate.IO GmbH ("Crate")
|
3
|
+
|
4
|
+
|
5
|
+
Licensed to Crate.IO GmbH (referred to in this notice as "Crate") under one or
|
6
|
+
more contributor license agreements.
|
7
|
+
|
8
|
+
Unless otherwise stated, every component of the CrateDB Python Adapter is
|
9
|
+
licensed under the Apache License, Version 2.0.
|
10
|
+
|
11
|
+
Third-party components bundled with the CrateDB Python Adapter are listed in
|
12
|
+
the LICENSE file along with their respective licenses. Any additional mandatory
|
13
|
+
notices pertaining to those dependencies will be reproduced in this file.
|
14
|
+
|
15
|
+
Crate provides pre-built releases for convenience, also known as convenience
|
16
|
+
releases. Building the CrateDB Python Adapter from source pulls in a number of
|
17
|
+
additional third-party dependencies. Hence, convenience releases will contain a
|
18
|
+
mix of CrateDB Python Adapter source code and third-party build-time
|
19
|
+
dependencies not listed in the LICENSE file or in this file.
|
20
|
+
|
21
|
+
Crate is committed to only using permissively licensed third-party code.
|
22
|
+
However, for the time being, if you make use of convenience releases, it is
|
23
|
+
your responsibility to check the licensing status of the bundled third-party
|
24
|
+
build-time dependencies.
|
@@ -0,0 +1,22 @@
|
|
1
|
+
sqlalchemy_cratedb/__init__.py,sha256=ahkoO7im4phxQSceEfW2cybgCCWPpBj58sT6eg3aNbU,2209
|
2
|
+
sqlalchemy_cratedb/compiler.py,sha256=FHIq7BXpOZTB-vHm7DkVXmAQ2_D4zYX1nQg-5q0KZ1s,11393
|
3
|
+
sqlalchemy_cratedb/dialect.py,sha256=lCZerHVNnh7VuLzq0pFPLRfmsqgplOwXCORoXHrH22Q,13708
|
4
|
+
sqlalchemy_cratedb/predicate.py,sha256=HT7tHF7PxX71G8m91lqpH732iVQZtO8_NPZUIsllcys,3622
|
5
|
+
sqlalchemy_cratedb/sa_version.py,sha256=NhNA5FUw0Sm5n-fSVo6CTcaioDRovUknFOslX31ir-I,1168
|
6
|
+
sqlalchemy_cratedb/support.py,sha256=gw3I4UUe2pfpfxeyJka-eETTP_2Dz9LkjmgONnO382E,2589
|
7
|
+
sqlalchemy_cratedb/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
|
+
sqlalchemy_cratedb/compat/api13.py,sha256=koqqq48UmAmrjXOyc5lV7gaVEl8xmi5xHUqTBVE5f5s,5687
|
9
|
+
sqlalchemy_cratedb/compat/core10.py,sha256=P46_ABaii-LQrzeeu8bkhCkoYLr2sVZB3TMGr2BSqD4,8636
|
10
|
+
sqlalchemy_cratedb/compat/core14.py,sha256=xh_wnNkMUD8aE_VFQPnPeXWsPIFzPg0ZjkhfJBzo3IM,11606
|
11
|
+
sqlalchemy_cratedb/compat/core20.py,sha256=QgNEA4z37ldFI4X9HapbTcga7KvsrdMkoMRjxvCJ4tE,15145
|
12
|
+
sqlalchemy_cratedb/type/__init__.py,sha256=iTGuaDZ40LiRXgEVd9RfUS5sODB0wqkMQVZMhuO8zyI,98
|
13
|
+
sqlalchemy_cratedb/type/array.py,sha256=RrHkFoNmTKtk_6md0OtsR7xofRxdk0PbfO-JFfevBJI,4396
|
14
|
+
sqlalchemy_cratedb/type/geo.py,sha256=9wFGxGMxxN-7_qZTlmWialzaPp_zzFj4U-yVqY_deA0,1377
|
15
|
+
sqlalchemy_cratedb/type/object.py,sha256=-bebiW38vor3grD9qsomzJ_z3zRpNMb2XLLto2fFez4,3016
|
16
|
+
sqlalchemy_cratedb-0.36.0.dist-info/LICENSE,sha256=s_w3FXmAYQuatqsgvyYLnGyC_13KOqp3W1DUEXO9RpY,10175
|
17
|
+
sqlalchemy_cratedb-0.36.0.dist-info/METADATA,sha256=V5N1KWycH7hRJlrahQsJ6-ZzsTy_ong3MCCrjVgAgjo,6348
|
18
|
+
sqlalchemy_cratedb-0.36.0.dist-info/NOTICE,sha256=yU9CWOf_XrVU7fpqGgM9tDjppoMyfHHBmFVMiINZk-k,1167
|
19
|
+
sqlalchemy_cratedb-0.36.0.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
|
20
|
+
sqlalchemy_cratedb-0.36.0.dist-info/entry_points.txt,sha256=c14wyCG3OeM64_DUbI_vLVUXR3e3GhDyO_PCjo6UQMU,57
|
21
|
+
sqlalchemy_cratedb-0.36.0.dist-info/top_level.txt,sha256=UjjXz0burl_-2MApzLzffHG_2RXm6KljZvoGJHISMPo,19
|
22
|
+
sqlalchemy_cratedb-0.36.0.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
sqlalchemy_cratedb
|