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.16.124832.tar.gz (12.0 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.16.124832-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: nanmai_tts-2025.12.16.124832.tar.gz
  • Upload date:
  • Size: 12.0 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.16.124832.tar.gz
Algorithm Hash digest
SHA256 e0ae95c81f50ca209306fb2311f31678c6fbf495739de0e1bf72f823d31bf249
MD5 ab4439cfa1f1e2f65f3a86f9e66d507d
BLAKE2b-256 439ca39ebcf03e3e709df0cf2ebd36b22d8cccbbea1b455583baf57a6c4a0876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nanmai_tts-2025.12.16.124832-py3-none-any.whl
Algorithm Hash digest
SHA256 c82fb4928ed21e60b99555416e90bbe43b95ca96a166f9094a5677145840170f
MD5 4db463be3dff32d1ef784f9434a384e5
BLAKE2b-256 e38fef3dfef50d107a774d7ad3c518523cdeb2908552b32806f48624bfa19be2

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