Metadata-Version: 2.4
Name: graphiant_sdk
Version: 25.6.1
Summary: Python SDK for Graphiant NaaS
Home-page: https://www.graphiant.com
Author: Graphiant Inc
Author-email: support@graphiant.com
License: MIT
Project-URL: Source Code, https://github.com/Graphiant-Inc/graphiant-sdk-python
Keywords: SDK,Graphiant,NaaS
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: urllib3>=1.15
Requires-Dist: six>=1.10
Requires-Dist: certifi
Requires-Dist: python-dateutil
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: summary

# Graphiant-SDK-Python

Python SDK for [Graphiant NaaS](https://www.graphiant.com).

Refer [Graphiant Documentation](https://docs.graphiant.com/) to get started with our services.

## Install

```sh
pip install graphiant-sdk
```

## Build

This guide explains how to build and install Graphiant-SDK from source code.

### Prerequisites

python version 3.12+

### Create and activate python virtual environment
```sh
python3 -m venv venv
source venv/bin/activate
```

### Install requirement packages
```sh
pip install --upgrade pip setuptools wheel
```

### Clone the graphiant-sdk-python repo
```sh
git clone git@github.com:Graphiant-Inc/graphiant-sdk-python.git
```

### Build the SDK Distribution
```sh
cd graphiant-sdk-python
python setup.py sdist bdist_wheel
```

### Install the SDK locally

Install using the source archive:

```sh
pip install dist/*.tar.gz
```

## License

Copyright (c) 2025 Graphiant-Inc

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.
