Skip to main content

A Wireshark-like display filter for dictionaries.

Project description

python_dict_display_filter Logo

Python Dictionary Display Filter

made-with-python PyPI GitHub


A Wireshark-like display filter for Python dictionaries. This tool allows you to easily filter, analyze, and manipulate data in Python dictionaries. It offers a range of features including comparison operators, combining operators, membership operators, and more.

Table of Contents

  1. Quick Start
  2. Usage
  3. Features
  4. Examples
  5. Acknowledgements

Quick Start

Here's a simple example to get you started. First, install the package:

pip3 install python-dict-display-filter

Then, use it to filter a list of dictionaries:

from pydictdisplayfilter import DictDisplayFilter
actors = [
    {"name": ["Laurence", "Fishburne"], "age": {"born": "1961"}, "gender": "male"},
    {"name": ["Keanu", "Reeves"], "age": {"born": "1964"}, "gender": "male", "power": ["flight", "bullet-time"]},
    {"name": ["Joe", "Pantoliano"], "age": {"born": "1951"}, "gender": "male"},
    {"name": ["Carrie-Anne", "Moss"], "age": {"born": "1967"}, "gender": "female"}
]
ddf = DictDisplayFilter(actors)

# This will filter the list to show only male actors born between 1960 and 1965 whose names end with 'e'
filtered_actors = ddf.filter("gender == male and (age.born > 1960 and age.born < 1965) and name matches .*e$")

print(list(filtered_actors))
[{'name': ['Laurence', 'Fishburne'], 'age': {'born': '1961'}, 'gender': 'male'}]

For more details, please refer to the User Guide.

Features

Python Dictionary Display Filter supports a wide range of features, including:

  • Comparison Operators: ==, !=, <=, <, >=, >, ~=, ~, &
  • Combining Operators: and, or, xor, not
  • Membership Operators: in
  • Types: Text, Number, Date & Time, Ethernet-, IPv4-, IPv6-Address
  • Slicing: Text, Ethernet-, IPv4-, IPv6-Address
  • Functions: upper, lower, len
  • Data Sources: CSV, Dictionaries, JSON, SQLite

For a detailed description of the individual features check out the User Guide.

Examples

For detailed examples of how the display filter can be utilized, please refer to the following:

Acknowledgements

This project wouldn't be possible without these awesome projects:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-dict-display-filter-0.9.9.tar.gz (34.9 kB view hashes)

Uploaded Source

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page