Metadata-Version: 2.1
Name: uni-sdk
Version: 0.3.0
Summary: The official Unimatrix SDK for Python.
Home-page: https://github.com/unimtx/uni-python-sdk
Author: Unimatrix
Author-email: dev@unimtx.com
License: MIT
Project-URL: Homepage, https://unimtx.com
Project-URL: Documentation, https://www.unimtx.com/docs
Project-URL: Repository, https://github.com/unimtx/uni-python-sdk
Keywords: unimatrix,unisdk,sms,messaging,2fa,otp,verification,sdk,api
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
License-File: LICENSE


# Unimatrix Python SDK

[![PyPI](https://img.shields.io/pypi/v/uni-sdk.svg)](https://pypi.python.org/pypi/uni-sdk) [![Release](https://img.shields.io/github/release/unimtx/uni-python-sdk.svg)](https://github.com/unimtx/uni-python-sdk/releases/latest) [![GitHub license](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://github.com/unimtx/uni-python-sdk/blob/main/LICENSE)

The Unimatrix Python SDK provides convenient access to integrate communication capabilities into your Python applications using the Unimatrix HTTP API. The SDK provides support for sending SMS, 2FA verification, and phone number lookup.

## Getting started

Before you begin, you need an [Unimatrix](https://www.unimtx.com/) account. If you don't have one yet, you can [sign up](https://www.unimtx.com/signup?s=python.sdk.gh) for an Unimatrix account and get free credits to get you started.

## Documentation

Check out the documentation at [unimtx.com/docs](https://www.unimtx.com/docs) for a quick overview.

## Installation

Using pip is the recommended way to install the Unimatrix SDK for Python, which is available on [PyPI](https://pypi.org/project/uni-sdk/).

Run the following command to add `uni-sdk` as a dependency to your project:

```bash
pip install uni-sdk
```

## Usage

The following example shows how to use the Unimatrix Python SDK to interact with Unimatrix services.

### Initialize a client

```py
from uni.client import UniClient

client = UniClient("your access key id", "your access key secret")
```

or you can configure your credentials by environment variables:

```sh
export UNIMTX_ACCESS_KEY_ID=your_access_key_id
export UNIMTX_ACCESS_KEY_SECRET=your_access_key_secret
```

### Send SMS

Send a text message to a single recipient.

```py
from uni.client import UniClient
from uni.exception import UniException

client = UniClient()

try:
  res = client.messages.send({
    "to": "+1206880xxxx", # in E.164 format
    "text": "Your verification code is 2048."
  })
  print(res.data)
except UniException as e:
  print(e)
```

### Send verification code

Send a one-time passcode (OTP) to a recipient. The following example will automatically generate a verification code.

```py
from uni.client import UniClient
from uni.exception import UniException

client = UniClient()

try:
  res = client.otp.send({
    "to": "+1206880xxxx"
  })
  print(res.data)
except UniException as e:
  print(e)
```

### Check verification code

Verify the one-time passcode (OTP) that a user provided. The following example will check whether the user-provided verification code is correct.

```py
from uni.client import UniClient
from uni.exception import UniException

client = UniClient()

try:
  res = client.otp.verify({
    "to": "+1206880xxxx",
    "code": "123456" # the code user provided
  })
  print(res.valid)
except UniException as e:
  print(e)
```

## Reference

### Other Unimatrix SDKs

To find Unimatrix SDKs in other programming languages, check out the list below:

- [Java](https://github.com/unimtx/uni-java-sdk)
- [Go](https://github.com/unimtx/uni-go-sdk)
- [Node.js](https://github.com/unimtx/uni-node-sdk)
- [PHP](https://github.com/unimtx/uni-php-sdk)
- [Ruby](https://github.com/unimtx/uni-ruby-sdk)
- [.NET](https://github.com/unimtx/uni-dotnet-sdk)

## License

This library is released under the [MIT License](https://github.com/unimtx/uni-python-sdk/blob/main/LICENSE).
