Skip to main content

decimalize is a package to convert radix flexibly.

Project description

Requirements

  • Python 2.5 or later.

Install

$ pip install decimalize

History

1.0.x

  • First release.

Usage

Basic Example

>>> import decimalize
>>> manager = decimalize.Decimalize('0123456789abcdef')
>>> manager.encode(255)
'ff'
>>> manager.decode('ffff')
65535

Multi Byte Example

Please specify a unicode-string if you use multibyte charset.

>>> import decimalize
>>> manager = decimalize.Decimalize(
...    u'あいうえおかきくけこさしすせそたちつてとなにぬねの'
...    u'はひふへほまみむめもやゆよらりるれろわをん'
... )  # 46進数
>>> print(manager.encode(500))
さる
>>> manager.decode(u'いぬ')
68
>>> # print(manager.encode(7308313824848881))
>>> # print(manager.encode(2811963241313541391200))

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

decimalize-1.0.0.tar.gz (2.6 kB view hashes)

Uploaded Source

Built Distribution

decimalize-1.0.0-py2.7.egg (5.9 kB view hashes)

Uploaded Source

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