We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Output is always flattened into a single list of dictionaries before saving to CSV, JSON, etc.
By grouping data into separate tables, it will be easier to post-process and merge the tables, e.g. connect data from separate pages into one row.
@select(css="...", table="table1") def function1(element): return {"data1": element.text_content()} @select(css="...", table="table2") def function2(element): return {"data2": element.text_content()}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Output is always flattened into a single list of dictionaries before saving to CSV, JSON, etc.
By grouping data into separate tables, it will be easier to post-process and merge the tables, e.g. connect data from separate pages into one row.
The text was updated successfully, but these errors were encountered: