Metadata-Version: 2.1
Name: pyocient
Author: Ocient Inc
Author-email: info@ocient.com
Home-page: https://www.ocient.com/
License: Apache License, Version 2.0
Description-Content-Type: text/markdown
Summary: Ocient Hyperscale Data Warehouse DBAPI Driver
Project-URL: documentation, https://docs.ocient.com/
Project-URL: release_notes, https://github.com/ocient/pyocient_release/
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Database
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Typing :: Typed
Requires-Python: >=3.10,<4
Requires-Dist: asn1
Requires-Dist: cryptography
Requires-Dist: dsnparse<=0.1.15
Requires-Dist: pkce
Requires-Dist: prompt-toolkit
Requires-Dist: pygments
Requires-Dist: pyparsing~=3.1
Requires-Dist: requests
Requires-Dist: tabulate
Requires-Dist: typing_extensions
Requires-Dist: protobuf>=5.29.2
Version: 3.5.1

# Ocient Hyperscale Data Warehouse DBAPI Driver

This python database API conforms to the Python Database API
Specification 2.0 and can be used to access the Ocient database.

This module can also be called as a main function, in which case
it acts as a CLI for the database.

When called as main, it a connection string in DSN (data source name)
format, followed by zero or more query strings that will be executed.
Output is returned in JSON format by default.

The Ocient DSN is of the format:
   `ocient://user:password@[host][:port][/database][?param1=value1&...]`

`user` and `password` must be supplied.  `host` defaults to localhost,
port defaults to 4050, database defaults to `system` and `tls` defaults
to `unverified`.

Currently supported parameters are:

- tls: Which can have the values "off", "unverified", or "on"
- force: Which can have the values "true"

Release notes are available at https://github.com/ocient/pyocient_release/.
Documentation for the database is at https://docs.ocient.com.

