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.30.213241.tar.gz (13.4 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.30.213241-py3-none-any.whl (12.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: nanmai_tts-2025.12.30.213241.tar.gz
  • Upload date:
  • Size: 13.4 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.30.213241.tar.gz
Algorithm Hash digest
SHA256 e53dbb4f9926aee786570213d52ad1409c2626668ca874a48ba6be0da010b035
MD5 09c989beb243e2deb0017dd10e548c5a
BLAKE2b-256 7943221d78b246d3747ab49a8aaea5081ca350df5f44f29ddee93ebf4e8e77ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nanmai_tts-2025.12.30.213241-py3-none-any.whl
Algorithm Hash digest
SHA256 f7e29892112d8ebc1e0c6728246951fb1e75f9f772900ba380ebac440461d5a5
MD5 767fef500d7f91df74810854f5fd9be1
BLAKE2b-256 7719640341f0e134af5bc887df101c971309465766645db66e99d798919016e4

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