Metadata-Version: 2.1
Name: trustedtwin
Version: 0.4.20
Summary: Python client for Trusted Twin API
Home-page: https://gitlab.com/trustedtwinpublic/trustedtwin-python
Author: TrustedTwin
Author-email: api@trustedtwin.com
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE

# Trusted Twin Python client

Package provides easy access to Trusted Twin API using Python.

### API Reference
For Trusted Twin API documentation navigate [here](https://gitlab.com/trustedtwinpublic/api-documentation-public). 

### Trusted Twin docs
For Trusted Twin Docs navigate [here](https://trustedtwin.com/docs).

### Installation

Using pip:

    pip install trustedtwin

From source:

    python setup.py install

### Requirements
* Python 3.6+ (CPython)

### Examples

```python
from trustedtwin import RestService

client = RestService(auth='$my_secret')

response = client.twins.create()
twin_uuid = response['creation_certificate']['uuid']
```

For code snippets please look into directory `examples`. 
