python-baseconv
python-baseconv copied to clipboard
Python module to convert numbers from base 10 integers to base X strings and back again.
Results
1
python-baseconv issues
Sort by
recently updated
recently updated
newest added
Spent today 3 hours on something could be super easily done via baseconv like so, ``` ASCII = ''.join(chr(x) for x in range(256)) ASCII_base = BaseConverter(ASCII, sign='ё') # umlaut e...