Skip to main content

Official Python SDK for 9jaLingo — AI-powered Text-to-Speech and Voice Cloning for Nigerian languages including Hausa, Igbo, Yoruba, and Nigerian Pidgin with 240+ speaker voices.

Project description

9jaLingo Python SDK

🇳🇬 The Official Python SDK for 9jaLingo — AI-Powered Text-to-Speech for Nigerian Languages

PyPI version Python versions License


9jaLingo is the first AI speech platform built specifically for Nigerian languages. This SDK provides a simple, Pythonic interface to the 9jaLingo TTS API, enabling developers to generate natural-sounding speech in Hausa, Igbo, Yoruba, and Nigerian Pidgin with over 240+ speaker voices.

Watch the video

Whether you're building voice assistants, accessibility tools, e-learning platforms, audiobook generators, or any application that needs high-quality Nigerian language speech synthesis — 9jaLingo has you covered.

Key Features

  • 🗣️ Text-to-Speech — Convert text to natural speech in 4 Nigerian languages
  • 🎭 240+ Speaker Voices — Choose from a diverse library of male and female voices
  • 🔊 Voice Cloning — Clone any voice from a short reference audio sample (WAV, MP3, M4A, etc.)
  • 🎧 Multi-Format Output — Export speech natively to WAV, PCM, MP3, FLAC, AAC, ALAC, or OGG
  • 📡 Streaming — Stream audio chunks as they're generated for real-time playback
  • Long-Form Generation — Automatically handles long texts with intelligent chunking
  • 🤖 OpenAI-Compatible — Drop-in replacement for OpenAI TTS with Nigerian language support
  • 🐍 Python 3.11+ — Modern Python with full type hints

Installation

pip install naijalingo

Quick Start

from naijalingo import NaijaLingo

client = NaijaLingo(api_key="nl-...")

# Generate speech
audio = client.tts.generate("Bawo ni, I dey greet you!", voice="yo")
audio.save("greeting.wav")

Or set your API key as an environment variable:

export NAIJALINGO_API_KEY="nl-..."
from naijalingo import NaijaLingo

client = NaijaLingo()  # picks up NAIJALINGO_API_KEY from env
audio = client.tts.generate("Sannu da zuwa!", voice="ha")
audio.save("output.wav")

API Reference

Text-to-Speech

from naijalingo import NaijaLingo

client = NaijaLingo(api_key="nl-...")

# Basic generation (returns WAV)
audio = client.tts.generate("How you dey?", voice="pcm")
audio.save("output.wav")

# With a specific speaker voice
audio = client.tts.generate(
    "Nnoo, kedu ka i mere?",
    voice="ig",
    speaker="adaeze_ig",
)
audio.save("adaeze_greeting.wav")

# Raw PCM format
audio = client.tts.generate("Hello!", voice="pcm", response_format="pcm")
pcm_bytes = audio.content  # raw 16-bit signed LE, 22050 Hz mono

# Export directly to compressed formats like MP3 or FLAC
audio = client.tts.generate("Make we test compressed audio.", voice="pcm", response_format="mp3")
audio.save("output.mp3")

# Adjust generation parameters
audio = client.tts.generate(
    "Na so life be sometimes.",
    voice="pcm",
    temperature=0.8,
    top_p=0.9,
    repetition_penalty=1.2,
)

Streaming

For long texts, stream audio chunks as they're generated:

# Stream to a file
with open("long_speech.wav", "wb") as f:
    for chunk in client.tts.stream("Very long text here...", voice="pcm"):
        f.write(chunk)

# Or collect the full stream
long_text="""
        Life na one kind journey wey nobody fit fully understand. From the day person open eye for this world, the journey don start. 
        Some people go say life na race, some go say na school, others go talk say na battle. But the truth be say life na mixture of many things together. E get sweet time, e get bitter time, e get time wey everything go dey move smooth like fresh engine, and e get time wey everywhere go just scatter like market wey rain beat.
        """
stream = client.tts.stream(long_text, voice="pcm", speaker="ada_pcm")
audio = stream.collect()
audio.save("long_speech.wav")

Voice Cloning

Clone a voice from a reference audio file:

audio = client.tts.clone(
    "Kedu ka i mere?",
    audio_file="reference_voice.mp3", # Natively supports MP3, M4A, FLAC, OGG, etc.
    voice="ig",
    response_format="mp3"
)
audio.save("cloned.mp3")

# From a file-like object
with open("reference.wav", "rb") as f:
    audio = client.tts.clone("Hello!", audio_file=f, voice="pcm")

Speakers

# List all speakers
speakers = client.tts.list_speakers()
for s in speakers:
    print(f"{s.id}{s.language} ({s.gender})")

# Filter by language
yoruba_speakers = client.tts.list_speakers(language="yo")

# Get a specific speaker
speaker = client.tts.get_speaker("ada_pcm")
print(speaker.name, speaker.language)

Languages

langs = client.tts.list_languages()
for lang in langs.languages:
    print(f"{lang.code}: {lang.name}")
# ha: Hausa
# ig: Igbo
# yo: Yoruba
# pcm: Pidgin

Models

models = client.list_models()
for model in models:
    print(f"{model.id} — owned by {model.owned_by}")

API Info

# Get root API information
info = client.api_info()
print(info.name)        # "9jaLingo TTS API"
print(info.version)     # "1.0.0"
print(info.endpoints)   # dict of all available endpoints

# Get v1 service metadata
service = client.service_info()
print(service.name)             # "9jaLingo API v1"
print(service.speech_url)       # "/v1/audio/speech"
print(service.models_url)       # "/v1/models"

Health Check

status = client.tts.health()
print(status.status)            # "healthy"
print(status.speakers_loaded)   # 240

Supported Languages

Code Language Description
ha Hausa Widely spoken across Northern Nigeria and West Africa
ig Igbo Native to southeastern Nigeria
yo Yoruba Spoken across southwestern Nigeria and Benin
pcm Nigerian Pidgin The most widely spoken lingua franca in Nigeria

Error Handling

from naijalingo import NaijaLingo, AuthenticationError, NotFoundError, ServerError

client = NaijaLingo(api_key="nl-...")

try:
    audio = client.tts.generate("Hello!", speaker="nonexistent_speaker")
except AuthenticationError:
    print("Invalid API key")
except NotFoundError as e:
    print(f"Speaker not found: {e.message}")
except ServerError:
    print("Server error — try again later")

Configuration

Parameter Environment Variable Default
api_key NAIJALINGO_API_KEY
base_url NAIJALINGO_BASE_URL https://api.9jalingo.org
timeout 120 seconds

Context Manager

with NaijaLingo(api_key="nl-...") as client:
    audio = client.tts.generate("Bawo ni!", voice="yo")
    audio.save("output.wav")
# Connection pool is automatically closed

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

naijalingo-2.0.1.tar.gz (12.5 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

naijalingo-2.0.1-py3-none-any.whl (12.9 kB view details)

Uploaded Python 3

File details

Details for the file naijalingo-2.0.1.tar.gz.

File metadata

  • Download URL: naijalingo-2.0.1.tar.gz
  • Upload date:
  • Size: 12.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for naijalingo-2.0.1.tar.gz
Algorithm Hash digest
SHA256 33feaaf5923d057e13847ab3d450d3e607a889fa8840af3ae6c7f8e359e47088
MD5 1e03c12d72d266b8cd2d61f44a32a3a8
BLAKE2b-256 c2a38cb0aa8a032b130b1708857ac72e62b33ce6fee2a51887f9fcf77edc9462

See more details on using hashes here.

File details

Details for the file naijalingo-2.0.1-py3-none-any.whl.

File metadata

  • Download URL: naijalingo-2.0.1-py3-none-any.whl
  • Upload date:
  • Size: 12.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for naijalingo-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a0dc3247d330c26d592f25dde79b26f07fff7ca325482b263777da67e6c81164
MD5 e4f58fddf0cf232c4a0db841714da489
BLAKE2b-256 7817826212e8be0c36d6907257927752e02ea7b5ea8716c7fa5f2c4d2d9e2eaf

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page