Skip to main content

Cyrillic numeral system numbers conversion

Project description

cu-numbers

PyPI - Python Version PyPI - Wheel Codecov

PyPI - License Code style: black

A program for numbers conversion between Arabic and Cyrillic (further CU) numeral systems.

Background

See Introduction to learn about CU numeral system.

Installation

pip install cu-numbers

Usage

import cunumbers

#   Convert an Arabic number to CU
#   Requires non-zero int, returns str

a = cunumbers.to_cu(1)

#   Convert a CU number to Arabic
#   Requires non-empty str, returns int

b = cunumbers.to_arab("а҃")

"Delimiter" and "plain" style numbers are supported in both directions. "Delimeter" style is default for CU-wise conversion.

Several falgs can be used with to_cu() method:

#   CU_PLAIN flag sets conversion to "plain" style

c = cunumbers.to_cu(111111, CU_PLAIN)

#   CU_NOTITLO flag omits "titlo" output

d = cunumbers.to_cu(11000, CU_PLAIN | CU_NOTITLO)

#   Following flags control dot styling:
#
#   CU_ENDDOT - append dot at the end
#   CU_WRAPDOT - append dot at both ends
#   CU_DELIMDOT - add dot separator between digit groups. Sets conversion to "delim" style
#   CU_ALLDOT - combine CU_WRAPDOT and CU_DELIMDOT

Contributing

Create an issue describing a bug or suggestion, then create a pull request mentioning the issue.

Feedback

Drop me a line: amshoor@gmail.com

Changelog

See Changelog.

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

cu-numbers-1.3.2.tar.gz (5.8 kB view hashes)

Uploaded Source

Built Distribution

cu_numbers-1.3.2-py3-none-any.whl (6.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page