You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
items = Items.from_csv (items.from_job)
schema = Schema.get_schema(schema)
items.report_all(schema)
# And to keep it granular enough so it can be used in Spidermon
arche.rules.duplicates.find_by(items.df, ["name", "title"])
Add _key column. Maybe it's easier to make _key as index if it's present and report index
_type. So far _type nobody really needed it since we can use filters.
The text was updated successfully, but these errors were encountered:
Support at least dataframe - which will allow to read the data locally from whatever source (csv, json, be it remote or local)
Currently the library relies on having
_key
to report items by it. So the implementation could look like:_key
column. Maybe it's easier to make_key
as index if it's present and report index_type
. So far_type
nobody really needed it since we can use filters.The text was updated successfully, but these errors were encountered: