Metadata-Version: 2.1
Name: crate
Version: 0.27.2
Summary: CrateDB Python Client
Home-page: https://github.com/crate/crate-python
Author: Crate.io
Author-email: office@crate.io
License: Apache License 2.0
Keywords: crate db api sqlalchemy
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Database
Requires-Python: >=3.4
Description-Content-Type: text/x-rst
License-File: LICENSE
License-File: NOTICE
Requires-Dist: urllib3 (>=1.9)
Provides-Extra: doc
Requires-Dist: sphinx (<4,>=3) ; extra == 'doc'
Requires-Dist: crate-docs-theme ; extra == 'doc'
Provides-Extra: sqlalchemy
Requires-Dist: sqlalchemy (<1.5,>=1.0) ; extra == 'sqlalchemy'
Requires-Dist: geojson (>=2.5.0) ; extra == 'sqlalchemy'
Provides-Extra: test
Requires-Dist: tox (<4,>=3) ; extra == 'test'
Requires-Dist: zope.testing (<5,>=4) ; extra == 'test'
Requires-Dist: zope.testrunner (<6,>=5) ; extra == 'test'
Requires-Dist: zc.customdoctests (<2,>=1.0.1) ; extra == 'test'
Requires-Dist: createcoverage (<2,>=1) ; extra == 'test'
Requires-Dist: stopit (<2,>=1.1.2) ; extra == 'test'
Requires-Dist: flake8 (<5,>=4) ; extra == 'test'

=====================
CrateDB Python Client
=====================

.. image:: https://github.com/crate/crate-python/workflows/Tests/badge.svg
    :target: https://github.com/crate/crate-python/actions?workflow=Tests
    :alt: Build status

.. image:: https://codecov.io/gh/crate/crate-python/branch/master/graph/badge.svg
    :target: https://app.codecov.io/gh/crate/crate-python
    :alt: Coverage

.. image:: https://readthedocs.org/projects/crate-python/badge/
    :target: https://crate.io/docs/python/
    :alt: Build status (documentation)

.. image:: https://img.shields.io/pypi/v/crate.svg
    :target: https://pypi.org/project/crate/
    :alt: PyPI Version

.. image:: https://img.shields.io/pypi/pyversions/crate.svg
    :target: https://pypi.org/project/crate/
    :alt: Python Version

.. image:: https://img.shields.io/pypi/dw/crate.svg
    :target: https://pypi.org/project/crate/
    :alt: PyPI Downloads

.. image:: https://img.shields.io/pypi/wheel/crate.svg
    :target: https://pypi.org/project/crate/
    :alt: Wheel

.. image:: https://img.shields.io/pypi/status/crate.svg
    :target: https://pypi.org/project/crate/
    :alt: Status

.. image:: https://img.shields.io/pypi/l/crate.svg
    :target: https://pypi.org/project/crate/
    :alt: License


|

A Python client library for CrateDB_.

This library:

- Implements the Python `DB API 2.0`_ specification
- Includes support for SQLAlchemy_ (>= 1.3.0)

Prerequisites
=============

Recent versions of this library are validated on Python 3 (>= 3.7).
It may also work on earlier versions of Python.


Installation
============

The CrateDB Python client is available as a pip_ package.

To install the most recent driver version, including the SQLAlchemy dialect
extension, run::

    $ pip install "crate[sqlalchemy]" --upgrade


Contributing
============

This project is primarily maintained by Crate.io_, but we welcome community
contributions!

See the `developer docs`_ and the `contribution docs`_ for more information.

Help
====

Looking for more help?

- Read the `project docs`_
- Check out our `support channels`_

.. _contribution docs: CONTRIBUTING.rst
.. _Crate.io: https://crate.io/
.. _CrateDB: https://github.com/crate/crate
.. _DB API 2.0: http://www.python.org/dev/peps/pep-0249/
.. _developer docs: DEVELOP.rst
.. _pip: https://pypi.python.org/pypi/pip
.. _SQLAlchemy: https://www.sqlalchemy.org
.. _StackOverflow: https://stackoverflow.com/tags/cratedb
.. _support channels: https://crate.io/support/
.. _project docs: https://crate.io/docs/python/
