Query Module¶
datajoint_file_validator.query.Query
dataclass
¶
Bases: ABC
An object representing a query against a snapshot.
Source code in datajoint_file_validator/query.py
13 14 15 16 17 18 19 20 21 22 23 24 |
|
filter(snapshot)
abstractmethod
¶
Filter a Snapshot based on this query. Virtual method.
Source code in datajoint_file_validator/query.py
17 18 19 20 |
|
datajoint_file_validator.query.GlobQuery
dataclass
¶
Bases: Query
A query that filters based on path. Includes support for glob wildcards.
Source code in datajoint_file_validator/query.py
27 28 29 30 31 32 33 34 35 36 37 38 39 |
|
filter(snapshot)
¶
Filter a Snapshot based on this query.
Source code in datajoint_file_validator/query.py
33 34 35 |
|