Convert numbers to Persian words
Project description
num2persian
Convert numbers to Persian words. Available in both Python and TypeScript implementations.
📖 فارسی بخوانید Persian
Installation
pip install num2persian
TypeScript Implementation
This project also includes a TypeScript implementation available as an NPM package.
npm install persian-number-words
For more information, see typescript/README.md.
Usage
Python API
import num2persian
# Convert numbers to Persian words
print(num2persian.to_words(42)) # Output: چهل و دو
print(num2persian.to_words(1234)) # Output: یک هزار و دویست و سی و چهار
print(num2persian.to_words(-567)) # Output: منفی پانصد و شصت و هفت
print(num2persian.to_words("890")) # Output: هشتصد و نود
Command Line
# Convert a number to Persian words
num2persian 2025
# Show version
num2persian --version
# Show help
num2persian --help
Features
- Convert integers and decimal numbers (positive, negative, and zero) to Persian words
- Accept string inputs that can be converted to numbers
- Proper Persian grammar with correct "و" (and) placement
- Support for very large numbers with proper Persian word naming
- Decimal numbers with appropriate Persian suffixes (دهم, صدم, هزارم, etc.)
- Command-line interface
- Comprehensive test coverage
Examples
from num2persian import to_words
# Basic numbers
to_words(0) # "صفر"
to_words(15) # "پانزده"
to_words(100) # "یکصد"
# Compound numbers
to_words(123) # "یکصد و بیست و سه"
to_words(2025) # "دو هزار و بیست و پنج"
# Large numbers
to_words(1000000) # "یک میلیون"
to_words(1000000000) # "یک میلیارد"
to_words(1000000000000) # "یک تریلیون"
# Decimal numbers
to_words(3.14) # "سه ممیز چهارده صدم"
to_words(0.5) # "صفر ممیز پنج دهم"
to_words(1.234) # "یک ممیز دویست و سی و چهار هزارم"
to_words(12.25) # "دوازده ممیز بیست و پنج صدم"
# Negative numbers
to_words(-42) # "منفی چهل و دو"
Development
Setup
# Clone the repository
git clone https://github.com/yourusername/num2persian.git
cd num2persian
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install in development mode
pip install -e .
Testing
# Run tests
pytest
# Run tests with coverage
pytest --cov=persian_numbers
Building
# Build wheel and source distribution
python -m build
# Install build dependencies
pip install build twine
# Upload to TestPyPI (replace with actual credentials)
twine upload --repository testpypi dist/*
# Upload to PyPI (replace with actual credentials)
twine upload dist/*
License
MIT License - see LICENSE file for details.
Contributing
Contributions are welcome! This project includes both Python and TypeScript implementations:
- Python: Located in the root directory
- TypeScript: Located in the
typescript/directory
Both implementations are tested in CI. Please feel free to submit a Pull Request.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file num2persian-2.0.2.tar.gz.
File metadata
- Download URL: num2persian-2.0.2.tar.gz
- Upload date:
- Size: 10.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2c09cc2243a061718713bd8405815180103afd26ca02eaad4991e347c9831fe
|
|
| MD5 |
7831f2cef259d6d93b14a56a735370fe
|
|
| BLAKE2b-256 |
614a365df349adc34c4f7050164b3bd27078203e1c721d70365429b938e93ce5
|
File details
Details for the file num2persian-2.0.2-py3-none-any.whl.
File metadata
- Download URL: num2persian-2.0.2-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a46fe9a9d9884bdee5c5f88c830a257532c201d7e705754558b6ce14c3c82ca
|
|
| MD5 |
6c72cce1428caa973edda97302483535
|
|
| BLAKE2b-256 |
6337008801559a27476995cb727b2647e311ea4aecb2aae633c3063fa1900749
|