Skip to content

podonos/podonos-pysdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Podonos

Quick Start

👨‍💻 1. Get an API key

Visit https://www.podonos.com, log in or sign up, and get an API key. For more details, see Docs

💾 2. Install podonos Python package

First of all, make sure you have installed Python 3.8 or newer

python --version

Once you confirm your Python version, install the package:

pip install podonos

🎙️ 3. Start speech evaluation

import podonos
from podonos import *

client = podonos.init(api_key="<YOUR_API_KEY_HERE>")
etor = client.create_evaluator()
for i in script_list:
  gen_audio = my_model.generate_and_save(i, script_list[i], f'/a/b/{i}.wav')
  etor.add_file(file=File(path=f'/a/b/{i}.wav', model_tag="my_new_model",
                          tags=["syn1", "male", "American"]))
etor.close()

Once we evaluate the audio files, we will email you the evaluation report within 12 hours.

👌 How to run the code testing

Run this at the base directory:

pytest

📗 Documentation

For a deeper dive on all capabilities and details, please refer to Documentation.

📑 License

MIT License