Metadata-Version: 2.1
Name: greenplum-python
Version: 1.0.0b5
Summary: Python interface for Greenplum and Postgres
Author-email: greenplum-python@vmware.com
Maintainer-email: greenplum-python@vmware.com
License: Apache Software License
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
License-File: LICENSE

<img src="./doc/images/gppython_logo_text.svg">

GreenplumPython is a Python library that enables the user to interact with Greenplum in a Pythonic way.

GreenplumPython provides a [pandas](https://pandas.pydata.org/)-like table API that
1. looks familiar and intuitive to Python users
2. is powerful to do complex analytics, such as statistical analysis, with UDFs and UDAs
3. encapsulates common best practices and avoids common pitfalls in Greenplum, compared to writing SQL directly

## Installation

To install the latest development version, do

```bash
pip3 install --user git+https://github.com/greenplum-db/GreenplumPython
```

To install the latest beta version, do

```bash
pip3 install --user greenplum-python
```

NOTE: These two versions are considered UNSTABLE. DON'T use it in the production environment!

Stable version will be released soon.

## Documentation

The documentation of GreenplumPython can be viewed at:

[Latest development version](https://greenplum-db.github.io/GreenplumPython/latest/)

[Latest beta version](https://greenplum-db.github.io/GreenplumPython/stable/)
