Skip to main content

Converts an integer to a hexdigest like string - except not 16 length but provided alphabet length

Project description

Latest Version

num_shorty converts an integer to a hexdigest like string - except not 16 length but provided alphabet length

Example:

>>> from import num_shorty
>>> num_shorty.short(123456789)
'8m0Kx'
>>> num_shorty.expand('8m0Kx')
123456789

You can implement your own alphabet set

>>> from import num_shorty
>>> num_shorty.short(123456789, alphabet='abcdefgABCDEFG-*!:_')
'cE!geD-'
>>> num_shorty.expand('cE!geD-', alphabet='abcdefgABCDEFG-*!:_')
123456789

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

num_shorty-1.0.1.tar.gz (2.0 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