Conversation
- Introduced `debug_html.py` to fetch and save HTML responses from Google searches using different user agents. - Created `debug_parse.py` to parse the saved GSA HTML using BeautifulSoup and extract relevant data. - Added `debug_selectors.py` and `debug_selectors2.py` to check for specific selectors in the HTML and analyze their occurrences. - Developed `debug_site.py` to test the site operator functionality within the Googer library. - Implemented `test_comprehensive.py` for a thorough test of Googer library features, including context manager usage and query building. - Added `test_googer.py` for a simple test case demonstrating basic search functionality.
- Deleted `debug_html.py`, `debug_parse.py`, `debug_selectors.py`, `debug_selectors2.py`, `debug_site.py`, `test_comprehensive.py`, and `test_googer.py` as they are no longer needed. - Simplified the `HttpClient` struct initialization in `http_client.rs`. - Improved formatting in the GET request logging and headers setting in `http_client.rs`. - Cleaned up the `build_region_params` function in `utils.rs` for better readability.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
debug_html.pyto fetch and save HTML responses from Google searches using different user agents.debug_parse.pyto parse the saved GSA HTML using BeautifulSoup and extract relevant data.debug_selectors.pyanddebug_selectors2.pyto check for specific selectors in the HTML and analyze their occurrences.debug_site.pyto test the site operator functionality within the Googer library.test_comprehensive.pyfor a thorough test of Googer library features, including context manager usage and query building.test_googer.pyfor a simple test case demonstrating basic search functionality.