crate 1.0.0__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.
@@ -0,0 +1,154 @@
1
+ Metadata-Version: 2.1
2
+ Name: crate
3
+ Version: 1.0.0
4
+ Summary: CrateDB Python Client
5
+ Home-page: https://github.com/crate/crate-python
6
+ Author: Crate.io
7
+ Author-email: office@crate.io
8
+ License: Apache License 2.0
9
+ Keywords: cratedb db api dbapi database sql http rdbms olap
10
+ Platform: any
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: Apache Software License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.6
18
+ Classifier: Programming Language :: Python :: 3.7
19
+ Classifier: Programming Language :: Python :: 3.8
20
+ Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Programming Language :: Python :: 3.13
25
+ Classifier: Programming Language :: Python :: Implementation :: CPython
26
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
27
+ Classifier: Topic :: Database
28
+ Requires-Python: >=3.6
29
+ Description-Content-Type: text/x-rst
30
+ License-File: LICENSE
31
+ License-File: NOTICE
32
+ Requires-Dist: urllib3
33
+ Requires-Dist: verlib2
34
+ Provides-Extra: doc
35
+ Requires-Dist: crate-docs-theme >=0.26.5 ; extra == 'doc'
36
+ Requires-Dist: sphinx <9,>=3.5 ; extra == 'doc'
37
+ Provides-Extra: test
38
+ Requires-Dist: certifi ; extra == 'test'
39
+ Requires-Dist: createcoverage <2,>=1 ; extra == 'test'
40
+ Requires-Dist: mypy <1.14 ; extra == 'test'
41
+ Requires-Dist: poethepoet <0.30 ; extra == 'test'
42
+ Requires-Dist: ruff <0.8 ; extra == 'test'
43
+ Requires-Dist: stopit <2,>=1.1.2 ; extra == 'test'
44
+ Requires-Dist: tox <5,>=3 ; extra == 'test'
45
+ Requires-Dist: pytz ; extra == 'test'
46
+ Requires-Dist: zc.customdoctests <2,>=1.0.1 ; extra == 'test'
47
+ Requires-Dist: zope.testing <6,>=4 ; extra == 'test'
48
+ Requires-Dist: zope.testrunner <7,>=5 ; extra == 'test'
49
+ Requires-Dist: backports.zoneinfo <1 ; (python_version < "3.9") and extra == 'test'
50
+
51
+ =====================
52
+ CrateDB Python Client
53
+ =====================
54
+
55
+ .. image:: https://github.com/crate/crate-python/workflows/Tests/badge.svg
56
+ :target: https://github.com/crate/crate-python/actions?workflow=Tests
57
+ :alt: Build status
58
+
59
+ .. image:: https://codecov.io/gh/crate/crate-python/branch/main/graph/badge.svg
60
+ :target: https://app.codecov.io/gh/crate/crate-python
61
+ :alt: Coverage
62
+
63
+ .. image:: https://readthedocs.org/projects/crate-python/badge/
64
+ :target: https://cratedb.com/docs/python/
65
+ :alt: Build status (documentation)
66
+
67
+ .. image:: https://img.shields.io/pypi/v/crate.svg
68
+ :target: https://pypi.org/project/crate/
69
+ :alt: PyPI Version
70
+
71
+ .. image:: https://img.shields.io/pypi/pyversions/crate.svg
72
+ :target: https://pypi.org/project/crate/
73
+ :alt: Python Version
74
+
75
+ .. image:: https://static.pepy.tech/badge/crate/month
76
+ :target: https://pepy.tech/project/crate
77
+ :alt: PyPI Downloads
78
+
79
+ .. image:: https://img.shields.io/pypi/wheel/crate.svg
80
+ :target: https://pypi.org/project/crate/
81
+ :alt: Wheel
82
+
83
+ .. image:: https://img.shields.io/pypi/status/crate.svg
84
+ :target: https://pypi.org/project/crate/
85
+ :alt: Status
86
+
87
+ .. image:: https://img.shields.io/pypi/l/crate.svg
88
+ :target: https://pypi.org/project/crate/
89
+ :alt: License
90
+
91
+
92
+ |
93
+
94
+ A Python client library for `CrateDB`_, implementing the Python `DB API 2.0`_
95
+ specification.
96
+
97
+ The CrateDB dialect for `SQLAlchemy`_ is provided by the `sqlalchemy-cratedb`_
98
+ package, see also `sqlalchemy-cratedb documentation`_.
99
+
100
+
101
+ Installation
102
+ ============
103
+
104
+ The CrateDB Python client is available as package `crate`_ on `PyPI`_.
105
+
106
+ To install the most recent driver version, run::
107
+
108
+ $ pip install --upgrade crate
109
+
110
+
111
+ Migration Notes
112
+ ===============
113
+
114
+ If you are migrating from previous versions of ``crate[sqlalchemy]<1.0.0``, you
115
+ will find that the newer releases ``crate>=1.0.0`` no longer include the
116
+ SQLAlchemy dialect for CrateDB.
117
+
118
+ See `migrate to sqlalchemy-cratedb`_ for relevant guidelines about how to
119
+ successfully migrate to the `sqlalchemy-cratedb`_ package.
120
+
121
+
122
+ Documentation and Help
123
+ ======================
124
+
125
+ - `CrateDB Python Client documentation`_
126
+ - `CrateDB reference documentation`_
127
+ - `Developer documentation`_
128
+ - `Contributing`_
129
+ - Other `support channels`_
130
+
131
+
132
+ Contributions
133
+ =============
134
+
135
+ The CrateDB Python client library is an open source project, and is `managed on
136
+ GitHub`_. We appreciate contributions of any kind.
137
+
138
+
139
+ .. _Contributing: CONTRIBUTING.rst
140
+ .. _crate: https://pypi.org/project/crate/
141
+ .. _Crate.io: https://cratedb.com/
142
+ .. _CrateDB: https://github.com/crate/crate
143
+ .. _CrateDB Python Client documentation: https://cratedb.com/docs/python/
144
+ .. _CrateDB reference documentation: https://crate.io/docs/reference/
145
+ .. _DB API 2.0: https://peps.python.org/pep-0249/
146
+ .. _Developer documentation: DEVELOP.rst
147
+ .. _managed on GitHub: https://github.com/crate/crate-python
148
+ .. _migrate to sqlalchemy-cratedb: https://cratedb.com/docs/sqlalchemy-cratedb/migrate-from-crate-client.html
149
+ .. _PyPI: https://pypi.org/
150
+ .. _SQLAlchemy: https://www.sqlalchemy.org/
151
+ .. _sqlalchemy-cratedb: https://github.com/crate/sqlalchemy-cratedb
152
+ .. _sqlalchemy-cratedb documentation: https://cratedb.com/docs/sqlalchemy-cratedb/
153
+ .. _StackOverflow: https://stackoverflow.com/tags/cratedb
154
+ .. _support channels: https://cratedb.com/support/
@@ -0,0 +1,24 @@
1
+ CrateDB Python Adapter
2
+ Copyright 2013-2024 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,18 @@
1
+ crate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ crate/client/__init__.py,sha256=6WP0UuWjaIA_y4COlsstRTIUjvkMIxtIz7qQtXjnUzQ,1308
3
+ crate/client/_pep440.py,sha256=iwY5wopxbgbwsT0ImANrwN3V_ZYQHhSr7lEdVT5dQRM,42
4
+ crate/client/blob.py,sha256=aMo6ZNHGT3Zq_yR3gcpd3CKrJvfqUAhExhKtHUwC5Io,3460
5
+ crate/client/connection.py,sha256=80v9_--YilDAaIQpejf3G_TWGz9iwUkixwHAL66sDm0,8098
6
+ crate/client/converter.py,sha256=Qci0MNcpz1jAnjquG8Ld9LI84_iHVInrv4HMb8r5zzg,4313
7
+ crate/client/cursor.py,sha256=Mlk-TVLzM4zSSr7GxcHK4Mjbt1KQeMfNFNrPBtGjk-c,10741
8
+ crate/client/exceptions.py,sha256=wMyJmOB3RP5kuPeW9f0fEb-1AKZcGSTyIGvN0HqpqUw,2557
9
+ crate/client/http.py,sha256=ddp_VSTcrMNStPjSG0CmdtRUO8dgaQZfNR_ltfs9DxI,22625
10
+ crate/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ crate/testing/layer.py,sha256=jvHRWTRE4Zal211UO0HWPFcbprAcaGB3WyAUDR7BKFQ,13376
12
+ crate/testing/util.py,sha256=BPEZ8DavXwyOTCmOQnP5QjQlapEw3harzKK4w2HOTA4,3264
13
+ crate-1.0.0.dist-info/LICENSE,sha256=s_w3FXmAYQuatqsgvyYLnGyC_13KOqp3W1DUEXO9RpY,10175
14
+ crate-1.0.0.dist-info/METADATA,sha256=k7Ca_N8e85QarM1eCWHgdoct44Ff3E-qEZEN9feWIE4,5379
15
+ crate-1.0.0.dist-info/NOTICE,sha256=jfWOHkoZKjNATGXMfgpMJdL38ki_ZZTgR6M9CUUJxrM,1159
16
+ crate-1.0.0.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
17
+ crate-1.0.0.dist-info/top_level.txt,sha256=2wP2HlpxdhgTLMl9ipi168xkm6FMq9_2bf0xGGxF_OI,6
18
+ crate-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.3.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ crate