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/
Description: # 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)
        ```
        
Keywords: maya insights bi marketing
Platform: UNKNOWN
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.4
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.4
Description-Content-Type: text/markdown
