deep-filter#
A simple package that filters out values from dicts/lists, including all dicts/lists nested within it.
Usage#
from deep_filter import deep_filter
x = {
'nope': 69,
'yep': [
69,
{'maybe': None},
99
]
}
def filter_func:
return value != 69
result = deep_filter(x, filter_func)
print(result)
# {'yep': [{}, 99]}
deep_filter(dict_or_list, filter_func=default_filter_func)#
- dict_or_list: A dictionary or list
- filter_func: An optional callback function. It will take a value as an argument, and return
Trueif the value will be kept andFalseif not. If omitted,Nonevalues will be filtered out.
Returns your dict or list, filtered.
Dev instructions#
Get started#
- Install Python (Python 3.7 works, probably other versions too)
- Install Poetry. Poetry is used to manage dependencies, the virtual environment and publishing to PyPI
- Run
poetry installto install Python package dependencies
I recommend running poetry config virtualenvs.in-project true, which makes Poetry store your Python virtual environment inside the project folder. Additionally, it lets VSCode's Python extension detect the virtual environment if you set the python.pythonPath setting to ${workspaceFolder}/.venv/bin/python in your settings.
Running#
To test if things work, you can run the following command to open the Python REPL. Then you can write Python, such as the usage examples:
poetry run python
Releasing a new version#
- Consider updating the lockfile by running
poetry update, then check if thing still work - Bump the version number:
poetry version <version> - Update
CHANGELOG.md - Build:
poetry build - Commit and create git tag
- Create GitHub release with release notes and attach the build files
- Publish to PyPi:
poetry publish