Metadata-Version: 2.1
Name: terality
Version: 0.9.3
Summary: The Data Processing Engine for Data Scientists
Home-page: https://terality.com/
License: Proprietary
Author: Terality Engineering Team
Author-email: dev.null@terality.com
Requires-Python: >=3.7.1,<4.0.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Provides-Extra: azure
Requires-Dist: aioboto3 (>=8.2.0,<9.0.0)
Requires-Dist: aiobotocore (>=1.1,<2.0)
Requires-Dist: azure-identity (>=1.6.0,<2.0.0); extra == "azure"
Requires-Dist: azure-storage-blob (>=12.8.1,<13.0.0); extra == "azure"
Requires-Dist: azure-storage-file-datalake (>=12.4.0,<13.0.0); extra == "azure"
Requires-Dist: boto3 (>=1.16,<2.0)
Requires-Dist: dill (>=0.3.2,<0.4.0)
Requires-Dist: numpy (>=1.18,<2.0)
Requires-Dist: pandas (>=1.0.0,<2.0.0)
Requires-Dist: pyarrow (>=3.0.0,<4.0.0)
Requires-Dist: pydantic (>=1.7.3,<2.0.0)
Requires-Dist: python-dateutil (>=2.8.1,<3.0.0)
Requires-Dist: requests (>=2.24.0,<3.0.0)
Requires-Dist: sentry-sdk (>=1.3.0,<2.0.0)
Requires-Dist: single-source (>=0.1.5,<0.2.0)
Requires-Dist: typing_extensions (>=3.10.0,<4.0.0)
Requires-Dist: urllib3 (>=1.26.0)
Description-Content-Type: text/markdown

# Terality

Terality is a distributed data processing engine for Data Scientists to execute all their Pandas code 100 times faster, even on terabytes of data, by only changing one line of code.
Terality is hosted, so there is no infrastructure to manage, and memory is virtually unlimited.

**Note:** You will need a Terality account to use this package. Contact us on [terality.com](https://www.terality.com/) to get started!

## Setup

Configure your credentials once and for all by calling the `configure` function:

```python
import terality
terality.configure('<YOUR_USER_ID>', '<YOUR_USER_SECRET>')
```

By default, the configuration is written inside a `.terality` directory under the current user's home. You can customize that location through the `TERALITY_HOME` environment variable.

