etils

Collection of common python utils

39 个版本 Python >=3.11
安装
pip install etils
poetry add etils
pipenv install etils
conda install etils
描述

Etils

Unittests PyPI version Documentation Status

etils (eclectic utils) is an open-source collection of utils for python.

Each top-level submodule is a self-contained independent module (with its own BUILD rule), meant to be imported individually. To avoid collisions with other modules/variables, module names are prefixed by e (arbitrary convention):

from etils import epath  # Path utils
from etils import epy  # Python utils
from etils import ejax  # Jax utils
...

Becauses each module is independent, only the minimal required libraries are imported (for example, importing epy won't suffer the cost of importing TF, jax,...)

Documentation

Installation

Because each module is independent and require different dependencies, you can select which modules deps to install:

pip install etils[array_types,epath,epy]

This is not an official Google product.

版本列表
1.14.0 2026-03-04
1.13.0 2025-07-15
1.12.2 2025-03-10
1.12.1 2025-03-06
1.12.0 2025-02-08
1.11.0 2024-11-27
1.10.0 2024-10-17
1.9.4 2024-09-03
1.9.3 2024-08-30
1.9.2 2024-06-12
1.9.1 2024-06-04
1.9.0 2024-05-31
1.8.0 2024-03-19
1.7.0 2024-02-15
1.6.0 2023-12-11
1.5.2 2023-10-24
1.5.1 2023-10-11
1.5.0 2023-09-19
1.4.1 2023-07-31
1.4.0 2023-07-25
1.3.0 2023-05-12
1.2.0 2023-04-04
1.1.1 2023-03-20
1.1.0 2023-03-13
1.0.0 2023-01-09
0.9.0 2022-10-28
0.8.0 2022-09-12
0.7.1 2022-08-09
0.7.0 2022-08-08
0.6.0 2022-05-31
0.5.1 2022-05-04
0.5.0 2022-03-23
0.4.0 2022-02-03
0.3.3 2022-01-07
0.3.2 2022-01-04
0.3.1 2022-01-04
0.3.0 2021-12-22
0.2.0 2021-12-22
0.1.0 2021-12-07