[ bianca ]
[ ソース: python-convertertools ]
パッケージ: python3-convertertools (0.6.1-1 など)
python3-convertertools に関するリンク
python-convertertools ソースパッケージをダウンロード:
- [python-convertertools_0.6.1-1.debian.tar.xz]
- [python-convertertools_0.6.1-1.dsc]
- [python-convertertools_0.6.1.orig.tar.gz]
メンテナ:
外部の資源:
- ホームページ [github.com]
類似のパッケージ:
Tools for converting Python data types
This library provides tools for manipulating Python data structures efficiently. It includes functions for deleting and popping elements in dictionaries using sets or tuples. These tools help in avoiding repetitive code by offering predefined methods for common operations on Python dictionaries.
Note that specific types are required for maximum performance.
Example usage:
from convertertools import (del_dict_tuple, del_dict_set,
pop_dict_tuple, pop_dict_set)
# del_dict* raise KeyError on missing keys del_dict_tuple(d, ("a", "b")) del_dict_set(d, {"a", "b"})
# pop_dict* ignores missing keys pop_dict_tuple(d, ("a", "b")) pop_dict_set(d, {"a", "b"})
その他の python3-convertertools 関連パッケージ
|
|
|
|
-
- dep: libjs-sphinxdoc (>= 8.1)
- JavaScript support for Sphinx documentation
-
- dep: python3
- interactive high-level object-oriented language (default python3 version)