Skip to main content

Async Python library for Nanmai TTS (DeepSeek/Kimi voices)

Project description

nanmai-tts

Async Python library for Nanmai TTS (DeepSeek/Kimi voices).

This package provides an easy-to-use interface for the Nanmai AI text-to-speech service, featuring high-quality Chinese voices. It follows the same design pattern as edge-tts for consistency.

Installation

pip install nanmai-tts

Usage

Basic Usage

import asyncio
import nanmai_tts

async def main():
    # Create a Communicate instance
    communicate = nanmai_tts.Communicate("你好世界", "DeepSeek")

    # Get audio data
    audio_data = await communicate.get_audio_data()

    # Or save directly to file
    await communicate.save("output.mp3")

asyncio.run(main())

Streaming

async def stream_audio():
    communicate = nanmai_tts.Communicate("Hello world", "Kimi")

    async for chunk in communicate.stream():
        if chunk["type"] == "audio":
            # Process audio chunk
            print(f"Received {len(chunk['data'])} bytes of audio")

CLI Usage

nanmai-tts --text "你好世界" --voice DeepSeek --write-media output.mp3

Available Voices

  • DeepSeek: Male voice, optimized for Chinese text
  • Kimi: Female voice, optimized for Chinese text

API Reference

Communicate Class

  • __init__(text: str, voice: str = "DeepSeek"): Initialize with text and voice
  • stream(): Async generator yielding audio chunks
  • save(filename: str): Save audio to file
  • get_audio_data() -> bytes: Get complete audio data

Requirements

  • Python 3.8+
  • aiohttp

License

This project is for educational and research purposes. The underlying Nanmai TTS API is proprietary.

Disclaimer

This package uses reverse-engineered authentication methods for the Nanmai TTS service. Use at your own risk and in accordance with applicable laws and terms of service.

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

nanmai_tts-2025.12.17.54655.tar.gz (12.7 kB view details)

Uploaded Source

Built Distribution

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

nanmai_tts-2025.12.17.54655-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file nanmai_tts-2025.12.17.54655.tar.gz.

File metadata

  • Download URL: nanmai_tts-2025.12.17.54655.tar.gz
  • Upload date:
  • Size: 12.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for nanmai_tts-2025.12.17.54655.tar.gz
Algorithm Hash digest
SHA256 ab9088ac4650d3bbea761c9e3ea4c5dcab169f267e95e00264cfd3f4ae8cecd6
MD5 cf5e2b92bad4d24f3f62e82003dd0cb3
BLAKE2b-256 2e74cbb779191a789e7c6661d02ddb155c4baeddd685ef949bab10f1c31d1fba

See more details on using hashes here.

File details

Details for the file nanmai_tts-2025.12.17.54655-py3-none-any.whl.

File metadata

File hashes

Hashes for nanmai_tts-2025.12.17.54655-py3-none-any.whl
Algorithm Hash digest
SHA256 2e76e99824b51dacd7880737e2f42f8ed65b72b227f259ca325fe1afa43f5028
MD5 8ca24e5893b3f4eaa767b4bf6ccd0bf1
BLAKE2b-256 87712871d8165e433bb5a20d302d577d2784ef15d7fd67a27e8fd6a69b550ef9

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