
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
.. image:: https://badge.fury.io/py/python-baseconv.svg :target: http://badge.fury.io/py/python-baseconv
.. image:: https://travis-ci.org/semente/python-baseconv.svg?branch=master :target: https://travis-ci.org/semente/python-baseconv
.. image:: https://coveralls.io/repos/semente/python-baseconv/badge.png?branch=master :target: https://coveralls.io/r/semente/python-baseconv?branch=master
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: https://github.com/semente/python-baseconv References: http://www.djangosnippets.org/snippets/1431/ ; http://code.activestate.com/recipes/111286/
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'
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.
The Django Project includes a copy of this module on django.utils.baseconv
.
FAQs
Convert numbers from base 10 integers to base X strings and back again.
We found that python-baseconv demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.