Name | nepali-num2word JSON |
Version |
0.1.2
JSON |
| download |
home_page | https://github.com/kushal1o1/nepali-num2word |
Summary | Convert numbers to Nepali-style words and formatting |
upload_time | 2025-08-02 14:21:36 |
maintainer | None |
docs_url | None |
author | Kushal |
requires_python | >=3.8 |
license | MIT License
Copyright (c) 2025 Kushal
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
|
keywords |
nepali
numbers
words
conversion
currency
formatting
unicode
devanagari
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# nepali-num2word
[](https://badge.fury.io/py/nepali-num2word)
[](https://pypi.org/project/nepali-num2word/)
[](https://opensource.org/licenses/MIT)
[](https://pepy.tech/project/nepali-num2word)
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
```bash
pip install nepali-num2word
```
### Basic Usage
```python
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
# 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:**
```python
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)`
Format numbers with Nepali-style comma separation.
**Parameters:**
- `number` (int | float): Number to format
**Returns:** `str` - Formatted number string
**Examples:**
```python
format_number(1000000) # "10,00,000"
format_number(120000) # "1,20,000"
format_number(34000000) # "3,40,00,000"
```
#### `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:**
```python
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
```bash
nepaliword 120000
# Output: one lakh twenty thousand
nepaliword 123.45 --lang np
# Output: एक सय तेइस रुपैयाँ र पैंतालीस पैसा
```
#### `nepaliformat` - Format with Nepali-style commas
```bash
nepaliformat 1000000
# Output: 10,00,000
```
#### `nepalicompact` - Compact number representation
```bash
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
```python
# 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
```bash
# 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](CONTRIBUTING.md) 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
- [x] Integer to words in Nepali format
- [x] Decimal (paise) support
- [x] Nepali Unicode output
- [x] CLI tool support
- [x] Nepali-style number formatting
- [x] Compact number representation
- [x] 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](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
- **Issues**: [GitHub Issues](https://github.com/kushal1o1/nepali-num2word/issues)
- **Discussions**: [GitHub Discussions](https://github.com/kushal1o1/nepali-num2word/discussions)
- **Email**: [Contact maintainer](mailto:work.kusal@gmail.com)
---
**Made in Nepal 🇳🇵 | Created by [Kushal](https://github.com/kushal1o1)**
Raw data
{
"_id": null,
"home_page": "https://github.com/kushal1o1/nepali-num2word",
"name": "nepali-num2word",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "nepali, numbers, words, conversion, currency, formatting, unicode, devanagari",
"author": "Kushal",
"author_email": "Kushal <work.kusal@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/c3/a5/d86ccb5c5c4dd99ea94418dba099fea9d1693525c69038854a884a8e8cc1/nepali_num2word-0.1.2.tar.gz",
"platform": null,
"description": "# nepali-num2word\n\n[](https://badge.fury.io/py/nepali-num2word)\n[](https://pypi.org/project/nepali-num2word/)\n[](https://opensource.org/licenses/MIT)\n[](https://pepy.tech/project/nepali-num2word)\n\nA 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.\n\n## \u2728 Features\n\n- **\ud83d\udd22 Number to Words Conversion**: Convert integers and floats to Nepali-style number words\n- **\ud83c\uddf3\ud83c\uddf5 Dual Language Support**: English transliteration and authentic Nepali Unicode (Devanagari)\n- **\ud83d\udcb0 Currency Support**: Automatic rupees and paise handling for decimal amounts\n- **\ud83d\udcca Nepali Number Formatting**: Format numbers with traditional Nepali comma placement (10,00,000)\n- **\ud83d\udce6 Compact Representation**: Human-readable format (1.2 lakhs, 4.5 crores)\n- **\u26a1 CLI Tools**: Complete command-line interface suite\n- **\ud83d\udee1\ufe0f Robust Error Handling**: Comprehensive input validation and clear error messages\n- **\u2796 Negative Number Support**: Handles negative values seamlessly\n\n## \ud83d\ude80 Quick Start\n\n### Installation\n\n```bash\npip install nepali-num2word\n```\n\n### Basic Usage\n\n```python\nfrom nepali_num2word import convert_to_words, format_number, compact_number\n\n# Convert to words (English)\nprint(convert_to_words(123456))\n# Output: one lakh twenty-three thousand four hundred fifty-six\n\n# Convert to words (Nepali)\nprint(convert_to_words(123456, lang='np'))\n# Output: \u090f\u0915 \u0932\u093e\u0916 \u0924\u0947\u0907\u0938 \u0939\u091c\u093e\u0930 \u091a\u093e\u0930 \u0938\u092f \u091b\u092a\u094d\u092a\u0928\u094d\u0928\n\n# Format with Nepali-style commas\nprint(format_number(1234567))\n# Output: 12,34,567\n\n# Compact representation\nprint(compact_number(1234567))\n# Output: 12.3 lakhs\n```\n\n## \ud83d\udcd6 Documentation\n\n### API Reference\n\n#### `convert_to_words(number, lang='en')`\n\nConvert numbers to words in Nepali numbering system.\n\n**Parameters:**\n- `number` (int | float | str): Number to convert (supports negative numbers)\n- `lang` (str): Language code - `'en'` for English, `'np'` for Nepali Unicode\n\n**Returns:** `str` - Number converted to words\n\n**Examples:**\n```python\nconvert_to_words(120000) # \"one lakh twenty thousand\"\nconvert_to_words(34000000) # \"three crore forty lakh\"\nconvert_to_words(123.45) # \"one hundred twenty-three rupees and forty-five paise\"\nconvert_to_words(-123) # \"-one hundred twenty-three\"\n\n# Nepali Unicode\nconvert_to_words(120000, lang='np') # \"\u090f\u0915 \u0932\u093e\u0916 \u092c\u0940\u0938 \u0939\u091c\u093e\u0930\"\nconvert_to_words(123.45, lang='np') # \"\u090f\u0915 \u0938\u092f \u0924\u0947\u0907\u0938 \u0930\u0941\u092a\u0948\u092f\u093e\u0901 \u0930 \u092a\u0948\u0901\u0924\u093e\u0932\u0940\u0938 \u092a\u0948\u0938\u093e\"\n```\n\n#### `format_number(number)`\n\nFormat numbers with Nepali-style comma separation.\n\n**Parameters:**\n- `number` (int | float): Number to format\n\n**Returns:** `str` - Formatted number string\n\n**Examples:**\n```python\nformat_number(1000000) # \"10,00,000\"\nformat_number(120000) # \"1,20,000\"\nformat_number(34000000) # \"3,40,00,000\"\n```\n\n#### `compact_number(number, lang='en')`\n\nConvert numbers to compact, human-readable format.\n\n**Parameters:**\n- `number` (int | float | str): Number to convert\n- `lang` (str): Language code - `'en'` for English, `'np'` for Nepali Unicode\n\n**Returns:** `str` - Compact number representation\n\n**Examples:**\n```python\ncompact_number(999) # \"999\"\ncompact_number(1500) # \"1.5 thousand\"\ncompact_number(100000) # \"1 lakh\"\ncompact_number(4200000) # \"42 lakhs\"\ncompact_number(42000000) # \"4.2 crores\"\n\n# Nepali Unicode\ncompact_number(4200000, lang='np') # \"\u096a\u0968 \u0932\u093e\u0916\"\ncompact_number(42000000, lang='np') # \"\u096a.\u0968 \u0915\u0930\u094b\u0921\"\n```\n\n### Command Line Interface\n\nThe package includes three CLI commands:\n\n#### `nepaliword` - Convert numbers to words\n```bash\nnepaliword 120000\n# Output: one lakh twenty thousand\n\nnepaliword 123.45 --lang np\n# Output: \u090f\u0915 \u0938\u092f \u0924\u0947\u0907\u0938 \u0930\u0941\u092a\u0948\u092f\u093e\u0901 \u0930 \u092a\u0948\u0902\u0924\u093e\u0932\u0940\u0938 \u092a\u0948\u0938\u093e\n```\n\n#### `nepaliformat` - Format with Nepali-style commas\n```bash\nnepaliformat 1000000\n# Output: 10,00,000\n```\n\n#### `nepalicompact` - Compact number representation\n```bash\nnepalicompact 4200000\n# Output: 42 lakhs\n\nnepalicompact 42000000 --lang np\n# Output: \u096a.\u0968 \u0915\u0930\u094b\u0921\n```\n\n## \ud83d\udee1\ufe0f Error Handling\n\nThe library provides comprehensive error handling with clear, actionable error messages:\n\n### Supported Input Types\n- \u2705 Integers: `123`, `-456`\n- \u2705 Floats: `123.45`, `-67.89`\n- \u2705 Numeric strings: `\"123\"`, `\"123.45\"`, `\"-456\"`\n\n### Error Examples\n```python\n# Type errors\nconvert_to_words(None) # TypeError: Number cannot be None\nconvert_to_words(True) # TypeError: Boolean values are not supported\nconvert_to_words([]) # TypeError: Unsupported type: list\n\n# Value errors\nconvert_to_words(\"\") # ValueError: Empty string is not a valid number\nconvert_to_words(\"hello\") # ValueError: 'hello' is not a valid number\nconvert_to_words(1000000000) # ValueError: Number too large (max: 999,999,999)\n```\n\n## \ud83c\udfaf Use Cases\n\n- **Financial Applications**: Convert amounts to words for checks, invoices, and receipts\n- **Educational Software**: Teaching Nepali number systems and currency\n- **Government Systems**: Official documents requiring Nepali number representation\n- **Banking Software**: Amount verification and display in Nepali format\n- **E-commerce**: Price display in traditional Nepali numbering\n\n## \ud83d\udd27 Development\n\n### Local Development Setup\n\n```bash\n# Clone the repository\ngit clone https://github.com/kushal1o1/nepali-num2word.git\ncd nepali-num2word\n\n# Install in development mode\npip install -e .\n\n# Run tests\npython -m pytest tests/\n\n# Test CLI locally\npython cli/main.py 120000 --lang np\npython cli/format_main.py 1000000\npython cli/compact_main.py 4200000\n```\n\n### Project Structure\n\n```\nnepali-num2word/\n\u251c\u2500\u2500 nepali_num2word/\n\u2502 \u251c\u2500\u2500 __init__.py\n\u2502 \u2514\u2500\u2500 core.py\n\u251c\u2500\u2500 cli/\n\u2502 \u251c\u2500\u2500 main.py\n\u2502 \u251c\u2500\u2500 format_main.py\n\u2502 \u2514\u2500\u2500 compact_main.py\n\u251c\u2500\u2500 tests/\n\u2502 \u251c\u2500\u2500 __init__.py\n\u2502 \u251c\u2500\u2500 conftest.py\n\u2502 \u251c\u2500\u2500 test_core.py\n\u2502 \u2514\u2500\u2500 test_cli.py\n\u251c\u2500\u2500 README.md\n\u251c\u2500\u2500 CONTRIBUTING.md\n\u251c\u2500\u2500 LICENSE\n\u251c\u2500\u2500 setup.py\n\u251c\u2500\u2500 pyproject.toml\n\u251c\u2500\u2500 requirements.txt\n\u2514\u2500\u2500 requirements-dev.txt\n```\n\n## \ud83e\udd1d Contributing\n\nWe welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details on how to get started.\n\n### Quick Contribution Steps\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Make your changes\n4. Add tests for new functionality\n5. Ensure all tests pass (`python -m pytest`)\n6. Commit your changes (`git commit -m 'Add amazing feature'`)\n7. Push to your branch (`git push origin feature/amazing-feature`)\n8. Open a Pull Request\n\n## \ud83d\udccb Roadmap\n\n- [x] Integer to words in Nepali format\n- [x] Decimal (paise) support\n- [x] Nepali Unicode output\n- [x] CLI tool support\n- [x] Nepali-style number formatting\n- [x] Compact number representation\n- [x] Comprehensive error handling\n- [ ] More natural phrasing for compound numbers\n- [ ] Reverse conversion (Nepali words \u2192 number)\n- [ ] Support for ordinal numbers\n- [ ] Date formatting in Nepali style\n\n## \ud83d\udcca Performance\n\nThe library is optimized for performance with minimal dependencies:\n- Zero external dependencies for core functionality\n- Efficient string building algorithms\n- Comprehensive input validation\n- Memory-efficient processing\n\n## \ud83c\udf0d Language Support\n\n| Feature | English | Nepali Unicode |\n|---------|---------|----------------|\n| Number to Words | \u2705 | \u2705 |\n| Currency (Rupees/Paise) | \u2705 | \u2705 |\n| Negative Numbers | \u2705 | \u2705 |\n| Compact Format | \u2705 | \u2705 |\n| CLI Support | \u2705 | \u2705 |\n\n## \ud83d\udcc4 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## \ud83d\ude4f Acknowledgments\n\n- Built with \u2764\ufe0f for the Nepali community\n- Inspired by the need for proper Nepali number formatting in software applications\n- Thanks to all contributors who help improve this library\n\n## \ud83d\udcde Support\n\n- **Issues**: [GitHub Issues](https://github.com/kushal1o1/nepali-num2word/issues)\n- **Discussions**: [GitHub Discussions](https://github.com/kushal1o1/nepali-num2word/discussions)\n- **Email**: [Contact maintainer](mailto:work.kusal@gmail.com)\n\n---\n\n**Made in Nepal \ud83c\uddf3\ud83c\uddf5 | Created by [Kushal](https://github.com/kushal1o1)**\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2025 Kushal\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n ",
"summary": "Convert numbers to Nepali-style words and formatting",
"version": "0.1.2",
"project_urls": {
"Bug Reports": "https://github.com/kushal1o1/nepali-num2word/issues",
"Homepage": "https://github.com/kushal1o1/nepali-num2word",
"Source": "https://github.com/kushal1o1/nepali-num2word"
},
"split_keywords": [
"nepali",
" numbers",
" words",
" conversion",
" currency",
" formatting",
" unicode",
" devanagari"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "10d4662839c4f626f0397063ed33ed8627bde7ad8d23478dd2c0d3e047a83f85",
"md5": "9c851eb217b67344e29f7b7597bee554",
"sha256": "57938b6a5940dc9e54013b8c197e4f6b9586e651a01e8bbf0609b13fc9fdb7f0"
},
"downloads": -1,
"filename": "nepali_num2word-0.1.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "9c851eb217b67344e29f7b7597bee554",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 14516,
"upload_time": "2025-08-02T14:21:34",
"upload_time_iso_8601": "2025-08-02T14:21:34.993805Z",
"url": "https://files.pythonhosted.org/packages/10/d4/662839c4f626f0397063ed33ed8627bde7ad8d23478dd2c0d3e047a83f85/nepali_num2word-0.1.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c3a5d86ccb5c5c4dd99ea94418dba099fea9d1693525c69038854a884a8e8cc1",
"md5": "ca6086fc8b84012dc62c00e3942c76fc",
"sha256": "7dcddde2834b2ccf0e8eb3669ca3d6a11bf1bd8545067c26ccee7bb4cec5e532"
},
"downloads": -1,
"filename": "nepali_num2word-0.1.2.tar.gz",
"has_sig": false,
"md5_digest": "ca6086fc8b84012dc62c00e3942c76fc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 19443,
"upload_time": "2025-08-02T14:21:36",
"upload_time_iso_8601": "2025-08-02T14:21:36.222378Z",
"url": "https://files.pythonhosted.org/packages/c3/a5/d86ccb5c5c4dd99ea94418dba099fea9d1693525c69038854a884a8e8cc1/nepali_num2word-0.1.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-02 14:21:36",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "kushal1o1",
"github_project": "nepali-num2word",
"github_not_found": true,
"lcname": "nepali-num2word"
}