Skip to main content

A library for downloading pronunciation MP3 files from Google's dictionary service

Project description

Google Pronouncer

A Python library for downloading pronunciation MP3 files from Google's dictionary service.

Installation

pip install google-pronouncer

Command Line Usage

The package provides a command-line interface with several commands:

Download Pronunciations

# Download all accents for words
google-pronouncer download hello world

# Download specific accent (gb/us)
google-pronouncer download hello -a gb

# Force fresh download (ignore cache)
google-pronouncer download hello --force-download

# Disable cache usage
google-pronouncer download hello --no-cache

# Specify output directory
google-pronouncer download hello -o ./my-pronunciations

Cache Management

# Show cache information for all words
google-pronouncer cache-info

# Show cache info for specific words
google-pronouncer cache-info hello world

# Clear all cache
google-pronouncer clear-cache

# Clear cache for specific words
google-pronouncer clear-cache hello world

Global Options

  -o, --output-dir PATH  Directory to save pronunciations (default: ./pronunciations)
  -t, --timeout SECONDS  Request timeout in seconds (default: 10)
  -v, --verbose         Enable verbose logging
  --no-cache           Disable cache usage
  --force-download     Force download even if cached

Python Library Usage

Basic Usage

from google_pronouncer import GooglePronunciationDownloader, DownloadConfig, AccentType

# Create configuration
config = DownloadConfig(
    output_dir="pronunciations",
    use_cache=True,           # Enable caching (default: True)
    force_download=False      # Force fresh download (default: False)
)

# Initialize downloader
downloader = GooglePronunciationDownloader(config)

# Download single word with specific accent
path = downloader.download_pronunciation("hello", AccentType.BRITISH)
print(f"Downloaded to: {path}")

# Download all accents for a word
paths = downloader.download_all_accents("world")
print(f"Downloaded files: {paths}")

# Download multiple words
words = ["hello", "world", "python"]
paths = downloader.download_words(words)
print(f"Downloaded files: {paths}")

Cache Management

# Get cache information
info = downloader.get_cache_info()  # All words
info = downloader.get_cache_info("hello")  # Specific word

# Clear cache
downloader.clear_cache()  # All words
downloader.clear_cache("hello")  # Specific word

Configuration Options

config = DownloadConfig(
    output_dir="pronunciations",    # Directory to save files
    timeout=10,                     # Request timeout in seconds
    user_agent="Custom User Agent", # Optional custom user agent
    use_cache=True,                # Whether to use cached files
    min_file_size=1024,           # Minimum valid file size in bytes
    force_download=False          # Force fresh download
)

Available Accents

  • AccentType.BRITISH - British English pronunciation (gb)
  • AccentType.AMERICAN - American English pronunciation (us)

Error Handling

from google_pronouncer import DownloadError, CacheError

try:
    path = downloader.download_pronunciation("word", AccentType.BRITISH)
except DownloadError as e:
    print(f"Download failed: {e}")
except CacheError as e:
    print(f"Cache error: {e}")

Features

  • Download pronunciations in British and American English
  • Configurable output directory and request settings
  • Smart caching system with validation
  • Cache management tools (info, clear)
  • Command-line interface
  • Proper error handling and logging
  • Type hints for better IDE support
  • Support for downloading multiple words and accents
  • Clean and simple API

Cache System

The library includes a smart caching system that:

  • Automatically caches downloaded files
  • Validates cached files before use
  • Provides cache information and management
  • Supports forced fresh downloads
  • Includes file size validation
  • Maintains cache metadata

Requirements

  • Python 3.7+
  • requests library (>=2.31.0)

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

google_pronouncer-0.1.0.tar.gz (8.4 kB view details)

Uploaded Source

Built Distribution

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

google_pronouncer-0.1.0-py3-none-any.whl (9.0 kB view details)

Uploaded Python 3

File details

Details for the file google_pronouncer-0.1.0.tar.gz.

File metadata

  • Download URL: google_pronouncer-0.1.0.tar.gz
  • Upload date:
  • Size: 8.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.4

File hashes

Hashes for google_pronouncer-0.1.0.tar.gz
Algorithm Hash digest
SHA256 f1485225af5501c26ddc4beb1e3508b96b2d6e00a5192a8ca83ae8aa584f5fcb
MD5 4b80823a94a0584005564e43f079e24a
BLAKE2b-256 c4161cdd8caf757164c5066204d85fbd34a7a7f42d8d8eb80980a66205fa5937

See more details on using hashes here.

File details

Details for the file google_pronouncer-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for google_pronouncer-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a175d1d0cc9c757837337b1ff217dffcc3d6a787f328fc7d1ac3a4dc96a5d200
MD5 57785901184d86c88c57bfe316d8da5f
BLAKE2b-256 1a58644a5c96eeed493d2a2f9feaaffa5f15ad0c2251ac1f95f89b7c41f280d1

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