Metadata-Version: 2.1
Name: resemble
Version: 1.3.4
Summary: Resemble API Client Library
Home-page: https://github.com/resemble-ai/resemble-python
Author: ResembleAI
Author-email: team@resemble.ai
Project-URL: Bug Tracker, https://github.com/resemble-ai/resemble-python/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests<3,>2

# resemble.ai API

[resemble.ai](https://resemble.ai) is a state-of-the-art natural voice cloning and synthesis provider. Best of all, the platform is accessible by using our public API! Sign up [here](https://app.resemble.ai) to get an API token!

This repository hosts a Python library for convenient usage of the [Resemble API](https://docs.resemble.ai).


# Quick start

```python
from resemble import Resemble

Resemble.api_key('your_api_key')

project = Resemble.v2.projects.get('project_uuid')
voice = Resemble.v2.voices.get('voice_uuid')

clip = Resemble.v2.clips.create_sync('project_uuid', 'voice_uuid', 'This is a test')
```

## Streaming
The Streaming API is currently in beta and is not available to all users. Please reach out to team@resemble.ai to inquire more.

Streaming example:
```python
from resemble import Resemble

Resemble.api_key('your_api_key')
Resemble.syn_server_url('your_resemble_synthesis_server_url') # Extra configuration required for streaming

for chunk in Resemble.v2.clips.stream('project_uuid', 'vouce_uuid', 'This is a test'):
    # do something with the `chunk` of audio data, such as feeding it into a streaming audio player
    pass
```

# Development

The library files are located in `resemble/`

# Testing

Install nose (`pip install nose`), then run tests like so:

```bash
$ TEST_API_KEY=<...> TEST_BASE_URL=<...> nosetests
```

Note: To see `print()` output, add `--nocapture` like so: `nosetests --nocapture`

# Publishing new versions

You need the `build` and `twine` pip packages. (`pip3 install build twine`)

1. `git status`: Make sure your working directory has no pending changes.
2. Update the version attribute in `setup.py`.
3. `git commit`: Commit this version change.
4. Remove previous builds: `rm -rf ./dist/`.
5. Build the package: `python3 -m build`.
6. (optional) Publish to the test index:
  ```sh
  python3 -m twine upload --repository testpypi dist/*
  ```
7. Publish to the index
  ```sh
  python3 -m twine upload dist/*
  ```
