Skip to main content

Convert numbers to Nepali-style words and formatting

Project description

nepali-num2word

PyPI version Python Support License: MIT PyPI Downloads

A comprehensive Python library for converting numbers to Nepali-style currency words with support for both English transliteration and Nepali Unicode (Devanagari script). Perfect for financial applications, educational tools, and any system requiring Nepali number formatting.

✨ Features

  • 🔢 Number to Words Conversion: Convert integers and floats to Nepali-style number words
  • 🇳🇵 Dual Language Support: English transliteration and authentic Nepali Unicode (Devanagari)
  • 💰 Currency Support: Automatic rupees and paise handling for decimal amounts
  • 📊 Nepali Number Formatting: Format numbers with traditional Nepali comma placement (10,00,000)
  • 📦 Compact Representation: Human-readable format (1.2 lakhs, 4.5 crores)
  • ⚡ CLI Tools: Complete command-line interface suite
  • 🛡️ Robust Error Handling: Comprehensive input validation and clear error messages
  • ➖ Negative Number Support: Handles negative values seamlessly

🚀 Quick Start

Installation

pip install nepali-num2word

Basic Usage

from nepali_num2word import convert_to_words, format_number, compact_number

# Convert to words (English)
print(convert_to_words(123456))
# Output: one lakh twenty-three thousand four hundred fifty-six

# Convert to words (Nepali)
print(convert_to_words(123456, lang='np'))
# Output: एक लाख तेइस हजार चार सय छप्पन्न

# Format with Nepali-style commas
print(format_number(1234567))
# Output: 12,34,567

# Format with Nepali Unicode digits
print(format_number(1234567, lang='np'))
# Output: १२,३४,५६७

# Compact representation
print(compact_number(1234567))
# Output: 12.3 lakhs

📖 Documentation

API Reference

convert_to_words(number, lang='en')

Convert numbers to words in Nepali numbering system.

Parameters:

  • number (int | float | str): Number to convert (supports negative numbers)
  • lang (str): Language code - 'en' for English, 'np' for Nepali Unicode

Returns: str - Number converted to words

Examples:

convert_to_words(120000)                    # "one lakh twenty thousand"
convert_to_words(34000000)                  # "three crore forty lakh"
convert_to_words(123.45)                    # "one hundred twenty-three rupees and forty-five paise"
convert_to_words(-123)                      # "-one hundred twenty-three"

# Nepali Unicode
convert_to_words(120000, lang='np')         # "एक लाख बीस हजार"
convert_to_words(123.45, lang='np')         # "एक सय तेइस रुपैयाँ र पैँतालीस पैसा"

format_number(number, lang='en')

Format numbers with Nepali-style comma separation.

Parameters:

  • number (int | float): Number to format
  • lang (str): Language code - 'en' for English digits, 'np' for Nepali Unicode digits

Returns: str - Formatted number string

Examples:

format_number(1000000)                      # "10,00,000"
format_number(120000)                       # "1,20,000"
format_number(34000000)                     # "3,40,00,000"

# Nepali Unicode digits
format_number(1000000, lang='np')           # "१०,००,०००"
format_number(120000, lang='np')            # "१,२०,०००"
format_number(123.45, lang='np')            # "१२३.४५"

compact_number(number, lang='en')

Convert numbers to compact, human-readable format.

Parameters:

  • number (int | float | str): Number to convert
  • lang (str): Language code - 'en' for English, 'np' for Nepali Unicode

Returns: str - Compact number representation

Examples:

compact_number(999)                         # "999"
compact_number(1500)                        # "1.5 thousand"
compact_number(100000)                      # "1 lakh"
compact_number(4200000)                     # "42 lakhs"
compact_number(42000000)                    # "4.2 crores"

# Nepali Unicode
compact_number(4200000, lang='np')          # "४२ लाख"
compact_number(42000000, lang='np')         # "४.२ करोड"

Command Line Interface

The package includes three CLI commands:

nepaliword - Convert numbers to words

nepaliword 120000
# Output: one lakh twenty thousand

nepaliword 123.45 --lang np
# Output: एक सय तेइस रुपैयाँ र पैंतालीस पैसा

nepaliformat - Format with Nepali-style commas

nepaliformat 1000000
# Output: 10,00,000

nepaliformat 1000000 --lang np
# Output: १०,००,०००

nepalicompact - Compact number representation

nepalicompact 4200000
# Output: 42 lakhs

nepalicompact 42000000 --lang np
# Output: ४.२ करोड

🛡️ Error Handling

The library provides comprehensive error handling with clear, actionable error messages:

Supported Input Types

  • ✅ Integers: 123, -456
  • ✅ Floats: 123.45, -67.89
  • ✅ Numeric strings: "123", "123.45", "-456"

Error Examples

# Type errors
convert_to_words(None)          # TypeError: Number cannot be None
convert_to_words(True)          # TypeError: Boolean values are not supported
convert_to_words([])            # TypeError: Unsupported type: list

# Value errors
convert_to_words("")            # ValueError: Empty string is not a valid number
convert_to_words("hello")       # ValueError: 'hello' is not a valid number
convert_to_words(1000000000)    # ValueError: Number too large (max: 999,999,999)

🎯 Use Cases

  • Financial Applications: Convert amounts to words for checks, invoices, and receipts
  • Educational Software: Teaching Nepali number systems and currency
  • Government Systems: Official documents requiring Nepali number representation
  • Banking Software: Amount verification and display in Nepali format
  • E-commerce: Price display in traditional Nepali numbering

🔧 Development

Local Development Setup

# Clone the repository
git clone https://github.com/kushal1o1/nepali-num2word.git
cd nepali-num2word

# Install in development mode
pip install -e .

# Run tests
python -m pytest tests/

# Test CLI locally
python cli/main.py 120000 --lang np
python cli/format_main.py 1000000
python cli/compact_main.py 4200000

Project Structure

nepali-num2word/
├── nepali_num2word/
│   ├── __init__.py
│   └── core.py
├── cli/
│   ├── main.py
│   ├── format_main.py
│   └── compact_main.py
├── tests/
│   ├── __init__.py
│   ├── conftest.py
│   ├── test_core.py
│   └── test_cli.py
├── README.md
├── CONTRIBUTING.md
├── LICENSE
├── setup.py
├── pyproject.toml
├── requirements.txt
└── requirements-dev.txt

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details on how to get started.

Quick Contribution Steps

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Make your changes
  4. Add tests for new functionality
  5. Ensure all tests pass (python -m pytest)
  6. Commit your changes (git commit -m 'Add amazing feature')
  7. Push to your branch (git push origin feature/amazing-feature)
  8. Open a Pull Request

📋 Roadmap

  • Integer to words in Nepali format
  • Decimal (paise) support
  • Nepali Unicode output
  • CLI tool support
  • Nepali-style number formatting
  • Compact number representation
  • Comprehensive error handling
  • More natural phrasing for compound numbers
  • Reverse conversion (Nepali words → number)
  • Support for ordinal numbers
  • Date formatting in Nepali style

📊 Performance

The library is optimized for performance with minimal dependencies:

  • Zero external dependencies for core functionality
  • Efficient string building algorithms
  • Comprehensive input validation
  • Memory-efficient processing

🌍 Language Support

Feature English Nepali Unicode
Number to Words
Currency (Rupees/Paise)
Negative Numbers
Compact Format
CLI Support

📄 License

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

🙏 Acknowledgments

  • Built with ❤️ for the Nepali community
  • Inspired by the need for proper Nepali number formatting in software applications
  • Thanks to all contributors who help improve this library

📞 Support


Made in Nepal 🇳🇵 | Created by Kushal

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

nepali_num2word-0.2.1.tar.gz (19.8 kB view details)

Uploaded Source

Built Distribution

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

nepali_num2word-0.2.1-py3-none-any.whl (14.8 kB view details)

Uploaded Python 3

File details

Details for the file nepali_num2word-0.2.1.tar.gz.

File metadata

  • Download URL: nepali_num2word-0.2.1.tar.gz
  • Upload date:
  • Size: 19.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for nepali_num2word-0.2.1.tar.gz
Algorithm Hash digest
SHA256 0afc6dc3a630bb8be20d957edcb9fd6c7315734936b18c47a6f99ef3743d5346
MD5 ebf0803daa579b7079b6519c53a61a54
BLAKE2b-256 ceb7de05f80fba758da6b682b1f90b6acac5e302a66fd62fcbf60de997f165ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for nepali_num2word-0.2.1.tar.gz:

Publisher: publish.yml on kushal1o1/nepali-num2word

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nepali_num2word-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for nepali_num2word-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1da5c8bae5d26935cf50d79fcf34c75558ba9905523a1e4606e0b9fe55b884da
MD5 d687297c7efbda95d8bc37ffaeb8025d
BLAKE2b-256 6332a18be7d1404c50a34e5557a0398591d60465a4a8d82ce724b5e723d2588e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nepali_num2word-0.2.1-py3-none-any.whl:

Publisher: publish.yml on kushal1o1/nepali-num2word

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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