A collection of helpers


Keywords
base64url, timezone, conversion, math
License
MIT
Install
pip install zaach==1.0.10

Documentation

Zaach

Zaach is an austrian term for exhausting/bothersome. Its a shortest way to express that you would rather do something else instead.

This package includes tested helpers that I wrote once and now use in a couple of projects. They should work with Python 2 and 3.

A base64 variant that is safe to be used in URLs and filesystems:

  • zaach.base64url.encode(unencoded)
  • zaach.base64url.decode(encoded)

ISO 8601 compliant time formatting:

  • zaach.time.formatter.iso_8601_duration(seconds)

Easily getting a UNIX timestamp in UTC:

  • zaach.time.timestamp(utc_dt=None)

Converting a UTC datetime object to CET/CEST, whatever is used at that date and time in the bestest timezone

  • zaach.time.tzconversion.utc_to_cet_or_cest(utc_dt)

A Borg object:

  • zaach.oop.borg.Borg

A Mixin to store and retrieve (expiring) values in a class

  • zaach.oop.cache.CacheMixin