Metadata-Version: 2.1
Name: redivis
Version: 0.18.16
Summary: Redivis python client library
Home-page: https://github.com/redivis/redivis-python
Author: Redivis Inc.
Author-email: support@redivis.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
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 :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.0.0
Requires-Dist: tqdm>=4.64.0
Requires-Dist: pyarrow>=13.0.0
Requires-Dist: dask>=2023.9.3
Requires-Dist: pandas>=2.0.0
Requires-Dist: polars>=0.19
Requires-Dist: geopandas>=0.14.0
Requires-Dist: folium>=0.15.0
Requires-Dist: mapclassify>=2.6.0
Requires-Dist: shapely>=2.0.1


![Redivis Logo](https://github.com/redivis/redivis-python/raw/main/assets/logo_small.png)

# redivis-python

[Redivis](https://redivis.com) client library for python!

Connect data on Redivis to the Python scientific stack, upload new data to Redivis, and script your data management
tasks!

## Getting started

The easiest way to get started is
to [create a new python notebook on Redivis](https://docs.redivis.com/reference/workflows/notebooks/python-notebooks).
This package, alongside other common data science python packages, are all preinstalled.

You can also install the latest version of this package in any other python environment:

```shell
pip install redivis
```

And then you're ready to go!

```py
import redivis

iris_table = redivis.organization("Demo").dataset("Iris species").table("Iris")
df = iris_table.to_pandas_dataframe()
```

## Documentation

**[View the comprehensive documentation here >](https://apidocs.redivis.com/client-libraries/redivis-python)**

This package contains a number of methods for processing data on Redivis and interfacing with the API through python.
Consult
the documentation for a detailed list of all methods and accompanying examples.

## Issue reporting

Please report any issues or feature requests in the [issue tracker](https://github.com/redivis/redivis-python/issues).

## Contributing

Please report any issues or feature requests in the [issue tracker](https://github.com/redivis/redivis-python/issues)
— your feedback is much appreciated!
