baseconv
Copyright (c) 2010, 2011, 2012, 2015, 2017 Guilherme Gondim. All rights reserved.
Copyright (c) 2009 Simon Willison. All rights reserved.
Copyright (c) 2002 Drew Perttula. All rights reserved.
- Description:
Python module to convert numbers from base 10 integers to base X strings and back again.
- Author(s):
Drew Perttula, Simon Willison, Guilherme Gondim
- License:
Python Software Foundation License version 2
- Project website:
- References:
http://www.djangosnippets.org/snippets/1431/ ; http://code.activestate.com/recipes/111286/
Install and Usage Instructions
You can use pip to install baseconv module:
$ pip install python-baseconv
Example usage:
>>> from baseconv import base2, base16, base36, base56, base58, base62, base64
>>> base2.encode(1234)
'10011010010'
>>> base2.decode('10011010010')
'1234'
>>> base64.encode(100000000000000000000000000000000000L)
'4q9XSiTDWYk7Z-W00000'
>>> base64.decode('4q9XSiTDWYk7Z-W00000')
'100000000000000000000000000000000000'
>>> from baseconv import BaseConverter
>>> myconv = BaseConverter('MyOwnAlphabet0123456')
>>> repr(myconv)
"BaseConverter('MyOwnAlphabet0123456', sign='-')"
>>> myconv.encode('1234')
'wy1'
>>> myconv.decode('wy1')
'1234'
>>> myconv.encode(-1234)
'-wy1'
>>> myconv.decode('-wy1')
'-1234'
>>> altsign = BaseConverter('abcd-', sign='$')
>>> repr(altsign)
"BaseConverter('abcd-', sign='$')"
>>> altsign.encode(-1000000)
'$cc-aaaaaa'
>>> altsign.decode('$cc-aaaaaa')
'-1000000'
License information
See the file “LICENSE” for terms & conditions for usage, and a DISCLAIMER OF ALL WARRANTIES.
This baseconv distribution contains no GNU General Public Licensed (GPLed) code, just like prior baseconv distributions.
All trademarks referenced herein are property of their respective holders.
Django
The Django Project includes a copy of this module on django.utils.baseconv.
Release files for python-baseconv 1.2.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| python-baseconv-1.2.2.tar.gz | 4.9 kB | Details |
Release files / python-baseconv-1.2.2.tar.gz
| Download URL | python-baseconv-1.2.2.tar.gz |
|---|---|
| Size | 4.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
0539f8bd0464013b05ad62e0a1673f0ac9086c76b43ebf9f833053527cd9931b
|
|
BLAKE2b-256 checksum How to use checksums |
33d09297d7d8dd74767b4d5560d834b30b2fff17d39987c23ed8656f476e0d9b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
Python-urllib/2.7
|