Metadata-Version: 2.1
Name: sara-sdk
Version: 1.0.0
Summary: Synkar SARA REST API SDK
Home-page: 
Author: Synkar Autonomous
Author-email: Synkar Autonomous <synkar@synkar.com>
License: MIT License
        
        Copyright (c) 2022 Synkar Autonomous
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/Synkar/Sara-SDK-Python
Keywords: synkar,sara,python-sdk,sdk
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Sara SDK Python
<div>
    <img src="https://img.shields.io/badge/version-1.0.0-blue" /> <img src="https://img.shields.io/badge/python-%3E=%203.7-green" /> <img src="https://img.shields.io/badge/license-MIT-brightgreen" />
</div>

## Getting Started

Assuming that you have a supported version of Python installed, you can first
set up your environment with:

    $ python -m venv .venv
    $ . .venv/bin/activate

Then, you can install sara SDK from PyPI with:

    $ python -m pip install sara-sdk

or install from source with:

    $ git clone https://github.com/Synkar/Sara-SDK-Python.git
    $ cd sara_sdk
    $ python -m pip install -r requirements.txt
    $ python -m pip install .

## Using Sara SDK

After installing sara-sdk

First thing to do after importing to project is use the credentials to authenticate

    sara_sdk.auth("access_key", "secret_key")

After this you can call the function would like to run.

Example:

    sara_sdk.iam.apps.list()

## Running Tests

You can run test to all functions by running `pytest` in the project by using:

    $ pytest

Or run on a specific file (module)

    $ pytest -v tests/test_apps.py

## Getting Help

We use GitHub issues for tracking bugs and feature requests

## Contributing

We value feedback and contributions from our community. Whether it's a bug report, new feature, correction, or additional documentation, we welcome your issues and pull requests.
