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
Often in scrapers you need to pull information out of the querystring, which requires the following boilerplate code:
def query @query ||= URI.decode_www_form(URI.parse(url).query).to_h end
It would be good to offer some equivalent of the above code for the common case where we want to pull information out of the query string.
The text was updated successfully, but these errors were encountered:
As @tmtmtmtm mentioned in everypolitician-scrapers/spain_congreso_es#14 (comment) perhaps query_string would be a better name for this.
query_string
Sorry, something went wrong.
No branches or pull requests
Problem
Often in scrapers you need to pull information out of the querystring, which requires the following boilerplate code:
Proposed solution
It would be good to offer some equivalent of the above code for the common case where we want to pull information out of the query string.
The text was updated successfully, but these errors were encountered: