taps.data.filter¶
Filter ¶
NullFilter ¶
ObjectSizeFilter ¶
Object size filter.
Checks if the size of an object (computed using
sys.getsizeof()
) is greater than a minimum size and
less than a maximum size.
Warning
sys.getsizeof()
does not count the size of objects
referred to by the main object.
Parameters:
-
min_bytes
(int
, default:0
) –Minimum size threshold (inclusive) to pass through the filter.
-
max_bytes
(float
, default:inf
) –Maximum size threshold (inclusive) to pass through the filter.
Source code in taps/data/filter.py
ObjectTypeFilter ¶
ObjectTypeFilter(*types: type)
Object type filter.
Checks if an object is of a certain type.
Parameters:
-
types
(type
, default:()
) –Types to check.
Source code in taps/data/filter.py
PickleSizeFilter ¶
Object size filter.
Checks if the size of an object (computed using size of the pickled object) is greater than a minimum size and less than a maximum size.
Warning
Pickling large objects can take significant time.
Parameters:
-
min_bytes
(int
, default:0
) –Minimum size threshold (inclusive) to pass through the filter.
-
max_bytes
(float
, default:inf
) –Maximum size threshold (inclusive) to pass through the filter.