Small Python utilities for adding concise functionality and usability to your code
Project description
Overview
Full documentation for this module is available over at ReadTheDocs.
This module provides numerous helper utilities for Python3.X code to add functionality with minimal code footprint. It has tools for the following tasks:
Progress bars on serial loops and parallel mappings (leveraging the excellent tqdm library)
Simple lazy-compute and caching of class properties, including dependency chaining
Executing Python2 code from within a Python3 program
More intuitive contract decorator (leveraging pycontracts)
Installation
As usual, you can install the latest code version directly from Github:
pip install git+https://github.com/scnerd/miniutils
Or you can pip install the latest release from PyPi:
pip install miniutils
Examples
To get started, you can import your desired utilities directly from miniutils. For example, to use the CachedProperty decorator:
from miniutils import CachedProperty
class MyClass:
@CachedProperty
def attribute(self):
return some_slow_computation(self)
Or to use the progress bar utilities:
from miniutils import progbar, parallel_progbar def mapper(x): return x**2 assert [mapper(i) for i in progbar(100)] == parallel_progbar(mapper, range(100))
To see documentation for each feature, look through this documentation or the table of contents above.
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 miniutils-1.0.3.tar.gz.
File metadata
- Download URL: miniutils-1.0.3.tar.gz
- Upload date:
- Size: 14.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8dffd39632f889967135f74fea8e861bc9215a50e238e74bfd4591b47782d8a
|
|
| MD5 |
ff72c636cd74294b94a7c520b728a935
|
|
| BLAKE2b-256 |
8e182507872dc21d72bd719709ae7578da6d4fc914ce8d5a075abf2cee60d831
|
File details
Details for the file miniutils-1.0.3-py3-none-any.whl.
File metadata
- Download URL: miniutils-1.0.3-py3-none-any.whl
- Upload date:
- Size: 17.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61a121ee3a1a94bf792160c55b3c24c44f79c56a2b96a8c563a52cb939d1fc52
|
|
| MD5 |
48d26b599a303a0748e1ccb37ed1eb7e
|
|
| BLAKE2b-256 |
582a40d8208f900cf94cc039a985bd416f9443b44a90040ef8b829542cb29b04
|