Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tonyseek/python-base36
Yet another implementation for the positional numeral system using 36 as the radix
https://github.com/tonyseek/python-base36
base36 hex python
Last synced: 2 days ago
JSON representation
Yet another implementation for the positional numeral system using 36 as the radix
- Host: GitHub
- URL: https://github.com/tonyseek/python-base36
- Owner: tonyseek
- License: mit
- Created: 2014-12-06T11:09:13.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-07-24T09:08:27.000Z (5 months ago)
- Last Synced: 2024-10-14T00:29:49.351Z (2 months ago)
- Topics: base36, hex, python
- Language: Python
- Size: 9.77 KB
- Stars: 24
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
|Build Status| |Coverage Status| |PyPI Version| |Wheel Status|
Base36 in Python
================Yet another implementation for the positional numeral system using 36 as the radix.
Installation
------------::
pip install base36
Usage
-----::
import base36
assert base36.dumps(19930503) == 'bv6h3'
assert base36.loads('bv6h3') == 19930503Issues
------If you want to report bugs or request features, please create issues on
`GitHub Issues `_.Contributes
-----------You can send a pull reueqst on
`GitHub `_... |Build Status| image:: https://img.shields.io/travis/tonyseek/python-base36.svg?style=flat
:target: https://travis-ci.org/tonyseek/python-base36
:alt: Build Status
.. |Coverage Status| image:: https://img.shields.io/coveralls/tonyseek/python-base36.svg?style=flat
:target: https://coveralls.io/r/tonyseek/python-base36
:alt: Coverage Status
.. |Wheel Status| image:: https://img.shields.io/pypi/wheel/base36.svg?style=flat
:target: https://warehouse.python.org/project/base36
:alt: Wheel Status
.. |PyPI Version| image:: https://img.shields.io/pypi/v/base36.svg?style=flat
:target: https://pypi.python.org/pypi/base36
:alt: PyPI Version