febase62 v1.1.0 now available
04 Mar 2019 by Friedrich Ewald · 1 min readI just released version 1.1.0 of febase62
. With this update it is now possible to encode byte strings as base62. The method signature stays the same:
>>> from febase62.base62 import Base62
>>> encoder = Base62()
>>> encoder.encode(b'\aa')
'6Sd'
The old way still works:
>>> from febase62.base62 import Base62
>>> encoder = Base62()
>>> encoder.encode(1337)
'LZ'
The package can be installed via pip install febase62
and the source code can be found here.
I am Friedrich "Freddy" Ewald,
a software engineer from Germany, living in California. I started this blog in late 2015, mostly as a digital
business card when I bought this domain. Soon after, I started writing down observations and things that I learned
during my work or free time. I am deeply interested in all aspects around software, the internet and teamwork.
You can find more information about me on the about page.