0.1.13 • Published 6 months ago

num2heb v0.1.13

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

num2heb

Convert numbers to Hebrew words in Python and JavaScript.

Installation

Python

pip install num2heb

JavaScript/TypeScript

npm install num2heb

Usage

Python

from num2heb import number_to_words

result = number_to_words(123)
print(result)  # Output: "מאה עשרים ושלושה"

JavaScript

const numberToWords = require("num2heb");

const result = numberToWords(123);
console.log(result); // Output: "מאה עשרים ושלושה"

TypeScript

import numberToWords from "num2heb";

const result: string = numberToWords(123);
console.log(result); // Output: "מאה עשרים ושלושה"

Contributing

If you would like to contribute to this package, please fork the repository and submit a pull request.

License

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

0.1.13

6 months ago

0.1.12

6 months ago

0.1.11

7 months ago

0.1.5

7 months ago

0.1.2

7 months ago

0.1.1

7 months ago

0.1.0

7 months ago