A collection of useful utilities
Project description
utilki
utils that are frequently used by me and might be useful for others
installation
pip install utilki
TaskMixin
Mixin class that adds create()
classmethod to dataclass you define as your task params. Useful when you have a lot of container based tasks executed on remote clusters (e.g. Kubernetes, Hashicorp Nomad, etc.). It reads task params from environment variables, parses, and validates them.
from utilki import TaskMixin
@dataclass
class Task(TaskMixin):
ayy: float = 69.69
lmao: str = "420"
os.environ["ayy"] = "42.42"
os.environ["lmao"] = "69"
t = Task.create()
print(f"ayy: {t.ayy}, type: {type(t.ayy)}")
# ayy: 42.42, type: <class 'float'>
print(f"lmao: {t.lmao}, type: {type(t.lmao)}")
# lmao: 69, type: <class 'str'>
Cli
Venv
$ utilki venv 3.8.10
$ Enter venv name: new_venv
$ Created venv `new_venv` with Python version 3.8.10
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
utilki-0.13.0.tar.gz
(9.1 kB
view details)
Built Distribution
utilki-0.13.0-py3-none-any.whl
(10.0 kB
view details)
File details
Details for the file utilki-0.13.0.tar.gz
.
File metadata
- Download URL: utilki-0.13.0.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.2 Linux/6.5.0-1015-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9aba3ab59f12eb9ba0266fdd27da3c3fa44d4024e84c272fe99af70267c4b2d |
|
MD5 | 43fae46c71c3b4106f876862a8dc4866 |
|
BLAKE2b-256 | 4472bbfedde444295d054aabb1f355943807d0427851106f0fdec175b2f4e0e6 |
Provenance
File details
Details for the file utilki-0.13.0-py3-none-any.whl
.
File metadata
- Download URL: utilki-0.13.0-py3-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.2 Linux/6.5.0-1015-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09f795f2bb836568601df92dbfa691a8aaec9f7186c362effd03d43b6155d1d0 |
|
MD5 | d33ed9948c43bc6bf91ea4dfbf555858 |
|
BLAKE2b-256 | c2526049c128bcedbcad851fc13e890a05844f77ffd491d5941a78fe1d5e3e1f |