Skip to content
New issue

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

Update README.md to reflect new examples #88

Merged
merged 2 commits into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,18 +117,23 @@ with sync_playwright() as playwright, playwright.chromium.launch(headless=False)
### More examples

- [Getting started with AgentQL](https://github.com/tinyfish-io/agentql/tree/main/examples/first_steps)
- [Close cookie dialog](https://github.com/tinyfish-io/agentql/tree/main/examples/close_cookie_dialog)
- [Close popup windows (like promotion form)](https://github.com/tinyfish-io/agentql/tree/main/examples/close_popup)
- [Compare product prices across different websites](https://github.com/tinyfish-io/agentql/tree/main/examples/compare_product_prices)
- [Debug AgentQL script](https://github.com/tinyfish-io/agentql/tree/main/examples/debug_script)
- [Get a single element by prompt](https://github.com/tinyfish-io/agentql/tree/main/examples/get_by_prompt)
- [Scroll to load more content ("infinite scroll")](https://github.com/tinyfish-io/agentql/tree/main/examples/infinite_scroll)
- [Use AgentQL with an alternative/open browser](https://github.com/tinyfish-io/agentql/tree/main/examples/interact_with_external_or_existing_browser)
- [Query a list of items](https://github.com/tinyfish-io/agentql/tree/main/examples/list_query_usage)
- [Log into sites with AgentQL](https://github.com/tinyfish-io/agentql/tree/main/examples/log_into_sites)
- [Run script in headless browser](https://github.com/tinyfish-io/agentql/tree/main/examples/run_script_in_headless_browser)
- [Run script with an external or existing browser](https://github.com/tinyfish-io/agentql/tree/main/examples/interact_with_external_or_existing_browser)
- [Run script online in Google Colaboratory](./examples/run_script_online_in_google_colab)
- [Compare product prices across different websites](https://github.com/tinyfish-io/agentql/tree/main/examples/compare_product_prices)
- [Save and reuse logged in state](https://github.com/tinyfish-io/agentql/tree/main/examples/save_and_load_authenticated_session)
- [Run AgentQL in Stealth Mode](https://github.com/tinyfish-io/fish-tank/tree/main/examples/stealth_mode)
- [Wait for page to load](https://github.com/tinyfish-io/agentql/tree/main/examples/wait_for_entire_page_load)
- [Close popup windows (like promotion form)](https://github.com/tinyfish-io/agentql/tree/main/examples/close_popup)
- [Close cookie dialog](https://github.com/tinyfish-io/agentql/tree/main/examples/close_cookie_dialog)
- [Leverage List Query](https://github.com/tinyfish-io/agentql/tree/main/examples/list_query_usage)
- [Leverage get_by_prompt method](https://github.com/tinyfish-io/agentql/tree/main/examples/get_by_prompt)
- [Log into Site](https://github.com/tinyfish-io/agentql/tree/main/examples/log_into_sites)
- [Collect pricing data from an e-commerce website using AgentQL](https://github.com/tinyfish-io/fish-tank/tree/main/examples/close_cookie_dialog)
- [Perform sentiment analysis](https://github.com/tinyfish-io/fish-tank/tree/main/application_examples/perform_sentiment_analysis)
- [Get an element's XPath](https://github.com/tinyfish-io/fish-tank/tree/main/application_examples/xpath)
- [Run script online in Google Colaboratory](./examples/run_script_online_in_google_colab)

For comprehensive guides and API references, check out our [official documentation](https://docs.agentql.com).

Expand Down
Loading