Skip to content
Stache edited this page May 24, 2022 · 1 revision

Filters are elements to be applied on Models or on Nodes to do a preliminary sorting. Filters can be used to sort on paths directly, or in a more granular way on the elements of each Node separately.

Usage example

from argonodes.filters import Filter

keep_placeVisit_only = Filter(model, paths="$.timelineObjects[*].placeVisit")

keep_placeVisit_only(model)
# or
model.apply(keep_placeVisit_only)

Argonodes Wiki

Tutorials

  • SOON

Usage and pipeline

  1. General usage examples
  2. Parsers: Preparation and conversion
  3. Nodes: Explore the data
  4. Appliers: Enhance the data
  5. Models: Abstract the data
  6. Filters: Filter and refine
  7. Exporters: Save your hard work!

Schemas

Argonodes

Known sources

Ressources

Clone this wiki locally