Metadata-Version: 2.1
Name: maya-sdk
Version: 0.1.0
Summary: Maya Insights python SDK
Home-page: https://github.com/mayainsights/maya-sdk-python
Author: Maya Insights
Author-email: support@mayainsights.com
License: MIT
Project-URL: Bug Tracker, https://github.com/mayainsights/maya-sdk-python/issues
Project-URL: Documentation, https://github.com/mayainsights/maya-sdk-python/
Project-URL: Source Code, https://github.com/mayainsights/maya-sdk-python/
Keywords: maya insights bi marketing
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
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 :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.4
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.20) ; python_version >= "3.0"

# maya-sdk
A client library for accessing Maya Insights API

## Usage

```python
import maya_sdk
maya_sdk.api_key = <API_KEY>
```

## API Key

Replace the <API_KEY> in the examples with an api key provided from Maya Insights. To generate a key, please contact our live chat support at https://mayainsights.com.

## Examples

### CSV Upload

```python
import maya_sdk
maya_sdk.api_key = <API_KEY>

with open("orders.csv", "rb") as f:
    maya_sdk.files.upload_csv(category="imported_orders", file=f)
```


