Skip to main content

9jaLingo Python SDK

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

PyPI version Python versions License


9jaLingo is the first AI speech platform built specifically for African 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 African 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-...")

# voice/speaker = speaker ID · lang/language = language code
audio = client.tts.generate(
    "Bawo ni, I dey greet you!",
    voice="adeola_yo",
    lang="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!", speaker="aisha_ha", language="ha")
audio.save("output.wav")

Important: For generate and stream:

  • voice / speaker = speaker ID (e.g. ada_pcm, adaeze_ig)
  • lang / language = language code (ha, ig, yo, pcm)

Do not pass language codes as voice. Use list_speakers(language="pcm") to discover speaker IDs. Voice cloning is different: clone(..., voice="ig") still takes a language code (sent as API lang).


API Reference

Text-to-Speech

from naijalingo import NaijaLingo

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

# Basic generation (returns WAV) — voice/speaker = speaker ID, lang = language
audio = client.tts.generate("How you dey?", voice="ada_pcm", lang="pcm")
audio.save("output.wav")

# speaker= is an alias for voice= (takes precedence when both are set)
audio = client.tts.generate(
    "Nnoo, kedu ka i mere?",
    speaker="adaeze_ig",
    language="ig",
)
audio.save("adaeze_greeting.wav")

# Raw PCM format
audio = client.tts.generate(
    "Hello!", voice="ada_pcm", lang="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="ada_pcm",
    lang="pcm",
    response_format="mp3",
)
audio.save("output.mp3")

# Adjust generation parameters
audio = client.tts.generate(
    "Na so life be sometimes.",
    voice="ada_pcm",
    lang="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...", speaker="ada_pcm", lang="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, lang="pcm", speaker="ada_pcm")
audio = stream.collect()
audio.save("long_speech.wav")

Voice Cloning

Clone a voice from a reference audio file. Here voice is a language code (ha / ig / yo / pcm), not a speaker ID:

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 code
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

Language codes (ha, ig, yo, pcm) are used to filter speakers and for voice cloning. They are not valid voice values for generate / stream.

Code Language Description Example speakers
ha Hausa Widely spoken across Northern Nigeria and West Africa aisha_ha, bello_ha
ig Igbo Native to southeastern Nigeria adaeze_ig, ifeanyi_ig
yo Yoruba Spoken across southwestern Nigeria and Benin adeola_yo, adekunle_yo
pcm Nigerian Pidgin The most widely spoken lingua franca in Nigeria ada_pcm, blessing_pcm

Error Handling

from naijalingo import NaijaLingo, AuthenticationError, NotFoundError, ServerError

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

try:
    audio = client.tts.generate("Hello!", voice="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")
except ValueError as e:
    # Raised locally if you pass a language code as voice, e.g. voice="pcm"
    print(e)

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="adeola_yo", lang="yo")
    audio.save("output.wav")
# Connection pool is automatically closed

Links

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.4.tar.gz (13.7 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.4-py3-none-any.whl (16.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: naijalingo-2.0.4.tar.gz
  • Upload date:
  • Size: 13.7 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.4.tar.gz
Algorithm Hash digest
SHA256 d8a3678e04549f6fdb622ccbdac3032a137542763470933cab08eb16a2669817
MD5 3a4b35e8654361cc38a9033843746087
BLAKE2b-256 bcd2c3bf83661eae1e2e9ac0c6c0ea645199d6a70b3a3bbae5a59ca9a2e781b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: naijalingo-2.0.4-py3-none-any.whl
  • Upload date:
  • Size: 16.7 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.4-py3-none-any.whl
Algorithm Hash digest
SHA256 c5f209cd41119038bc12f2e3bf4253ae8cf64c8de68900fda701c9496feae730
MD5 1aad1712b0eaa737f91547fed1ac0caa
BLAKE2b-256 b49b457540ca80982e0c25dfb2e22a84243e3750fba566f146ff7fac32b2f473

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 Sentry Error logging StatusPage Status page