Initial commit

This commit is contained in:
2025-08-28 04:58:13 +00:00
commit 29c6d41d2f
7 changed files with 186 additions and 0 deletions

14
nw.py Normal file
View File

@@ -0,0 +1,14 @@
# nw.py
# ------
# Implements a simple number-to-text command-line interface.
# Ex: python nw.py 145
from argparse import ArgumentParser
from numberwords import int_under_1000000_to_str
parser = ArgumentParser("Print out a number as it is spoken in English.")
parser.add_argument("number", type=int)
args = parser.parse_args()
text = int_under_1000000_to_str(args.number)
print(text)