Friedrich Ewald My Personal Website

febase62 v1.1.0 now available

I 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.


About the author

is an experienced Software Engineer with a Master's degree in Computer Science. He started this website in late 2015, mostly as a digital business card. He is interested in Go, Python, Ruby, SQL- and NoSQL-databases, machine learning and AI and is experienced in building scalable, distributed systems and micro-services at multiple larger and smaller companies.