Python wrapper for PlayHT REST API
Project description
pyplayht
Python wrapper for PlayHT API https://docs.play.ht/reference/api-getting-started
Installation
pip install pyplayht
Environmental Variables
Get your keys from https://play.ht/app/api-access
Name | Value |
---|---|
PLAY_HT_USER_ID |
account user id |
PLAY_HT_API_KEY |
account secret key |
Sample Code
from pathlib import Path
from pyplayht.classes import Client
# create new client
client = Client()
# create new conversion job
job = client.new_conversion_job(
text="Hello, World!",
voice="en-US-JennyNeural",
)
# check job status
job = client.get_coversion_job_status(job.get("transcriptionId"))
# download audio from job
data = client.download_file(job.get('audioUrl'))
# do something with audio bytes
path = Path("demo.mp3")
path.write_bytes(data)
Developer Instructions
Run the dev setup scripts inside scripts
directory
├── scripts
│ ├── setup-dev.bat # windows
│ └── setup-dev.sh # linux
Install the pyplayht
package as editable
https://setuptools.pypa.io/en/latest/userguide/development_mode.html
pip install -e .
When making a commit, use the command cz commit
or cz c
You may also use the regular git commit
command but make sure to follow the Conventional Commits
specification
https://www.conventionalcommits.org/en/v1.0.0/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyplayht-0.1.0.tar.gz
.
File metadata
- Download URL: pyplayht-0.1.0.tar.gz
- Upload date:
- Size: 18.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b00f0f5d6bb07c8edb508394097b536c4dc912b0a569ff8675d87cc697740d7d |
|
MD5 | dc00f096d40dd5fa8e9bc3a63d5b69ef |
|
BLAKE2b-256 | b9d3720ad88de2c800a7b8fc272e6df530d9c948ff1433e50beecaed5a12668d |
File details
Details for the file pyplayht-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: pyplayht-0.1.0-py3-none-any.whl
- Upload date:
- Size: 12.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dedb1c8267236f53901eaa82fb8ede5414768e3f1d3115167e35761e3c11f281 |
|
MD5 | 1bf5cc4dc8cd9cc04b2d84a1c20226fe |
|
BLAKE2b-256 | 8e37d4340f4a2a2bc628fd4eeb017862ecaa6be23ce6508e5d5a07fcd743c635 |