A collection of Python utility functions by Tenhil GmbH & Co. KG
Project description
baumbelt
This is a collection of utilities we, at Tenhil, find useful when developing in Python or specifically Django.
baumbelt is an acronym for:
Basic Auxiliary Utility Methods toolbelt.
Also, Baum is the german word for trees, and we happen to just like them. A lot.
Installation
pip install baumbelt
Utilities
baumbelt contains both python- and django-specific utilities. If you don't have Django installed, you still can use the vanilla Python utilities.
Everything imported from baumbelt.django assumes Django to be installed.
EnumContainsMeta
baumbelt.enum.EnumContainsMeta offers a metaclass, that adds the syntactic sugar of member checks. The default Enum only allows checks for values:
from enum import Enum
from baumbelt.enums import EnumContainsMeta
class AtomEnum(Enum, metaclass=EnumContainsMeta):
hydrogen = 1
helium = 2
"hydrogen" in AtomEnum # True
2 in AtomEnum # True
"water" in AtomEnum # False
MeasureTime
The baumbelt.time.MeasureTime class can be used as a context manager to have a syntactically appealing way to measure the time a block of code takes.
The following two snippets produce the same result.
Vanilla:
from datetime import datetime
t0 = datetime.now()
this_call_takes_a_while()
tend = datetime.now() - t0
print(f"{tend} ({tend.total_seconds()}s)")
MeasureTime:
from baumbelt.timing import MeasureTime
with MeasureTime() as mt:
this_call_takes_a_while()
print(mt)
Timer
baumbelt.time.timer is a more flexible utility compared to MeasureTime. It additionally allows to tap the current time.
This snippet:
import time
from baumbelt.timing import Timer
def fetch_raw_data():
with Timer() as t:
time.sleep(0.8)
t.tap("got users")
time.sleep(2)
t.tap("got events")
time.sleep(0.5)
def enrich_data():
with Timer("enrich_data", resolution="ms") as t:
time.sleep(0.1)
t.tap("enriched-step-1")
time.sleep(0.02)
t.tap("enriched-step-2")
with Timer("main") as t:
fetch_raw_data()
t.tap("enriching..")
enrich_data()
produces the following output:
v 'main' started...
v 'fetch_raw_data' started...
> 'got users' took 0.8002s (at 0.8002s)
> 'got events' took 2.0003s (at 2.8005s)
ʌ 'fetch_raw_data' took 3.3008s
> 'enriching..' took 3.3009s (at 3.3009s)
v 'enrich_data' started...
> 'enriched-step-1' took 100.1561ms (at 100.1561ms)
> 'enriched-step-2' took 20.1433ms (at 120.2993ms)
ʌ 'enrich_data' took 120.3260ms
ʌ 'main' took 3.4212s
If you don't pass a name to Timer(), it will use the inspect package to find the caller function's name.
Query Support
When Django is available, the Timer will also track the queries fired per block. Given this example code:
with Timer(resolution="s") as t:
author, _ = Author.objects.get_or_create(name="Martin Heidegger")
t.tap("author")
book, _ = Book.objects.get_or_create(title="Sein und Zeit", author=author)
t.tap("book")
it will yield this output:
v 'handle' started...
> 'author' took 0.0060s (at 0.0060s), had 4 queries
> 'book' took 0.0063s (at 0.0122s), had 4 queries
ʌ'handle' took 0.0122s, had 8 queries
If you don't want this, pass disable_queries=True to Timer().
HuggingLog
baumbelt.logging.HuggingLog offers a convenient way to print the duration a specific code block took to complete. It utilizes MeasureTime
and adds a bit of printing around it. You can also pass a different logging function, for instance logger.debug.
This especially comes in handy, if your code runs in detached environments (e.g. cronjobs).
import logging
from baumbelt.logs import HuggingLog
logger = logging.getLogger(__name__)
with HuggingLog("cross-compile doom", logging_fn=logger.debug, prefix="[ARM]"):
# compile hard
...
This outputs something like:
(2629) [DEBUG] 2024-05-28 14:49:51,616 - logging#32 - [ARM]: Start 'cross-compile doom'...
(2629) [DEBUG] 2024-05-28 14:49:53,616 - logging#41 - [ARM]: Finish 'cross-compile doom' in 0:00:02.000204 (2.000204s total)
Vigilant readers may notice the log-origin "logging#32" and "logging#41". These places originate from inside the utility and dont add useful context. A way to circumvent this is to pass a lambda:
with HuggingLog(..., logging_fn=lambda s: logger.debug(s)):
group_by_key
baumbelt.grouping.group_by_key is a little utility to group a given iterable by an attribute of its items.
from datetime import date
from baumbelt.grouping import group_by_key
iterable = [
date(2020, 1, 1),
date(2021, 2, 2),
date(2022, 3, 3),
date(2023, 4, 4),
]
grouped = group_by_key(iterable, "weekday")
grouped == {
1: [date(2021, 2, 2), date(2023, 4, 4)],
2: [date(2020, 1, 1)],
3: [date(2022, 3, 3)],
}
The passed attribute_name can also be a callable (like date.weekday()) or just an attribute (like date.day).
There exists
itertools.groupby, but it would return iterators that may be undesired.
pklcache
When debugging something that involves slow IO or heavy computation, you may find yourself looking for some sort of cache.
The baumbelt.cache.pklcache decorator attempts to help here. Wrapped around a function, it will pickle its result to a local file, and
unpickle it when it's called the next time.
import time
from baumbelt.cache import pklcache
@pklcache
def do_work(foo: int, bar: bool):
time.sleep(60)
return 42
do_work(420, False) # First run, takes 60s, creates `do_work.pkl`
do_work(420, False) # Second run, unpickles `do_work.pkl` file immediately.
do_work(999, True) # WARNING: returns the same cached value.
You may change the pickle file destination (and name). It defaults to the current working directory, and the decorated function's name.
If the body of the cached function changes, or you just want a fresh result, you may pass force_refresh. It will
overwrite any pre-existing cache file with the latest actual function result. This is equivalent to manually removing
the cached file from your filesystem before every execution.
@pklcache(destination="/tmp/cache", force_refresh=True)
def do_work(foo: int, bar: bool):
time.sleep(60)
return 42
retry
A decorator that retries the wrapped function when specified exceptions occur. Supports max tries, delay, exponential backoff and jitter.
import logging
from baumbelt.retry import retry
logger = logging.getLogger(__name__)
@retry(exceptions=ConnectionError, max_tries=5, retry_delay=1, backoff=2.0, logging_fn=logger.warning)
def fetch_data():
return request_something()
SmartTimeoutHTTPAdapter
And HTTP Adapter that can be used to guarantee the end of a request after a given time while handling retries and separate individual request timeouts:
from requests import Session
from baumbelt.requests import SmartRetryHTTPAdapter
session = Session()
session.mount("", SmartRetryHTTPAdapter(
overall_timeout=30.0,
single_connect_timeout=3.0,
single_read_timeout=10.0,
))
response = session.get("https://foo.bar/some-resource/")
count_queries [Django]
When developing apps in Django, you often find yourself hunting for performance bottlenecks. Or maybe just
want to get an overview of how many DB calls are actually fired in a certain context. That's what count_queries does:
from baumbelt.django.sql import count_queries
with count_queries(name="setup"):
author, _ = Author.objects.get_or_create(name="Martin Heidegger")
book, _ = Book.objects.get_or_create(title="Sein und Zeit", author=author)
with count_queries(name="count"):
num_authors = Author.objects.count()
This outputs:
'setup' took 2 / 2 queries
'count' took 1 / 3 queries
If you use a multiple database setup, or just don't happen to have your DB named default, you can pass
the db_name argument to count_queries.
django_sql_debug [Django]
Often it is not just enough to know how many queries are made. You want to know which queries are made exactly and how long each takes. Django offers
to log queries and their runtimes via the logging framework. But you often end up with way too much noise.
This is where django_sql_debug aims to help. By activating the SQL logs exclusively inside the context manager, you can focus on the queries
you actually want to see.
from baumbelt.django.sql import django_sql_debug
with django_sql_debug():
author, _ = Author.objects.get_or_create(name="Martin Heidegger")
book, _ = Book.objects.get_or_create(title="Sein und Zeit", author=author)
(0.000)
SELECT "myapp_author"."id", "myapp_author"."name" FROM "myapp_author" WHERE "myapp_author"."name" = 'Martin Heidegger' LIMIT 21; args=('Martin Heidegger',); alias=default
(0.000)
SELECT "myapp_book"."id", "myapp_book"."title", "myapp_book"."author_id" FROM "myapp_book" WHERE ("myapp_book"."author_id" = 1 AND "myapp_book"."title" = 'Sein und Zeit') LIMIT 21; args=(1, 'Sein und Zeit'); alias=default
(0.000)
SELECT COUNT(*) AS "__count" FROM "myapp_author"; args=(); alias=default
django_sql_debug also accepts some arguments to control how the SQL should be presented:
-
indent: Boolean to control if the SQL should be reindented. Default isTrue -
max_arguments: Integer to control how many arguments in anINclause are displayed. Default is5. Set to-1to disable argument cutting. If there are less than 4 arguments, no truncation is done. -
truncate_unparsable: Boolean, defaultTrue. If a query gets too long to be parsed in reasonable time (for formatting and syntax highlights), we will just trim it and display it the default way. So no formatting or colors. But if you really want to see the whole query, you can force that. -
db_name: String to specify the database to work with when you have a multiple database setup or when you don't have thedefaultalias for your DB. Default value isdefault.
In this example, the SQL is indented, and the arguments are limited to 5:
SELECT "myapp_author"."id",
"myapp_author"."name"
FROM "myapp_author"
WHERE "myapp_author"."id" IN (0,
1,
2,
3,
/* 5 truncated */
9)
Batching QuerySets [Django]
When working with large querysets, you may want to process records in batches to avoid loading everything into memory at once. Use
batch_ordered_queryset to iterate over an ordered queryset in configurable batch sizes:
from baumbelt.django.sql.batch import batch_ordered_queryset, iterate_batch_ordered_queryset
qs = Book.objects.all().order_by("pk")
for batch in batch_ordered_queryset(queryset=qs, batch_size=1000):
... # batch is a list with up to 1000 Book instances
# If you need to iterate over individual records without handling batches explicitly;
# Although, Django's native `qs.iterator()` would do pretty much the same.
for book in iterate_batch_ordered_queryset(queryset=qs, batch_size=1000):
... # book is a single Book instance
s3utils [Django]
When developing apps in Django, you may find yourself surrounded by AWS storages. In some Django specialities like collectstatic, bulk-uploading
makes a lot of sense. baumbelt.django.s3utils tries to fill this gap. You can use the storage class BulkStaticStorage to enable bulk operations.
Existence checks
Say, your bucket containing a key /myfolder/myfile.txt. When using the base class S3Boto3Storage, the following checks:
- exists("myfolder/myfile.txt") -> True
- exists("myfolder/") -> False
- exists("myfolder") -> False
- exists("myfol") -> False
When using the classes from baumbelt.django.s3utils, it looks like this:
- exists("myfolder/myfile.txt") -> True
- exists("myfolder/") -> True
- exists("myfolder") -> True
- exists("myfol") -> False
Example configuration
INSTALLED_APPS = [
# ...
"s3utils",
# ...
]
AWS_PRIVATE_BUCKET = os.environ["AWS_PRIVATE_BUCKET"]
AWS_PUBLIC_BUCKET = os.environ["AWS_PUBLIC_BUCKET"]
PRIVATE_MEDIA_LOCATION = "media"
PUBLIC_MEDIA_LOCATION = "media"
STATIC_LOCATION = "static"
MEDIA_DOMAIN = f"{AWS_PUBLIC_BUCKET}.s3.amazonaws.com"
STATIC_DOMAIN = f"{AWS_PUBLIC_BUCKET}.s3.amazonaws.com"
MEDIA_URL = f"https://{MEDIA_DOMAIN}/{PUBLIC_MEDIA_LOCATION}/"
STATIC_URL = f"https://{STATIC_DOMAIN}/{STATIC_LOCATION}/"
STORAGES = {
"default": {"BACKEND": "s3utils.storage.PrivateMediaStorage"},
"public": {"BACKEND": "s3utils.storage.PublicMediaStorage"},
"staticfiles": {"BACKEND": "s3utils.storage.BulkStaticStorage"},
}
Tip: install tqdm for nice progress bars during uploads.
wait-for-migrations
When deploying django apps, you may find it necessary to asure that all migrations are done during a step in your deployment. You can use the management command wait-for-migrations to do so.
This command blocks the Thread for 60 seconds to handle all migrations of all databases set in settings.DATABASES. You can also adjust the timeout value with the argument --timeout.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file baumbelt-1.8.2.tar.gz.
File metadata
- Download URL: baumbelt-1.8.2.tar.gz
- Upload date:
- Size: 24.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47199041fa441349dcc5cfb69cedff46baac558d0ea914b0f31d9f4b2a94b571
|
|
| MD5 |
1fadaef440faf5a175431298933ee68d
|
|
| BLAKE2b-256 |
97bffb166c116fb52b33bd2d41f2792a9a4d8d78e92666645ef942425ed80474
|
Provenance
The following attestation bundles were made for baumbelt-1.8.2.tar.gz:
Publisher:
publish-pypi.yml on Tenhil-GmbH-Co-KG/baumbelt
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
baumbelt-1.8.2.tar.gz -
Subject digest:
47199041fa441349dcc5cfb69cedff46baac558d0ea914b0f31d9f4b2a94b571 - Sigstore transparency entry: 1851998219
- Sigstore integration time:
-
Permalink:
Tenhil-GmbH-Co-KG/baumbelt@b3b6845d6e1025a70ced98caa9dc6e97d7d0b26d -
Branch / Tag:
refs/tags/1.8.2 - Owner: https://github.com/Tenhil-GmbH-Co-KG
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@b3b6845d6e1025a70ced98caa9dc6e97d7d0b26d -
Trigger Event:
push
-
Statement type:
File details
Details for the file baumbelt-1.8.2-py3-none-any.whl.
File metadata
- Download URL: baumbelt-1.8.2-py3-none-any.whl
- Upload date:
- Size: 26.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44e3ecda421d2cd5bbf7f2cd578c76d3d8bf95b10a4dfaeb5b58cc7a66b9aaff
|
|
| MD5 |
da03364b7c388432ddfcd26110b58cc8
|
|
| BLAKE2b-256 |
6cd0731f5bc6228b37d9fca1ed0e7780d7369dbab8cbfc6d116b914edff573ee
|
Provenance
The following attestation bundles were made for baumbelt-1.8.2-py3-none-any.whl:
Publisher:
publish-pypi.yml on Tenhil-GmbH-Co-KG/baumbelt
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
baumbelt-1.8.2-py3-none-any.whl -
Subject digest:
44e3ecda421d2cd5bbf7f2cd578c76d3d8bf95b10a4dfaeb5b58cc7a66b9aaff - Sigstore transparency entry: 1851998262
- Sigstore integration time:
-
Permalink:
Tenhil-GmbH-Co-KG/baumbelt@b3b6845d6e1025a70ced98caa9dc6e97d7d0b26d -
Branch / Tag:
refs/tags/1.8.2 - Owner: https://github.com/Tenhil-GmbH-Co-KG
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@b3b6845d6e1025a70ced98caa9dc6e97d7d0b26d -
Trigger Event:
push
-
Statement type: