Welcome to convertertools documentation!

Installation & Usage

convertertools

Documentation: https://convertertools.readthedocs.io

Source Code: https://github.com/bluetooth-devices/convertertools


Tools for converting python data types

These are very simple tools for manipulating python data structures to avoid writing out the same code many times in libraries.

Installation

Install this via pip (or your favourite package manager):

pip install convertertools

Usage

Note that specific types are required for maximum performance.

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"})

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!

Credits

This package was created with Copier and the browniebroke/pypackage-template project template.