-
Notifications
You must be signed in to change notification settings - Fork 65
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
Export query_build and query_parse. #425
Comments
What's stopping you from using |
When someone wants to scrape a web page that uses POST method, the first thing to do is to inspect how the form is built. When you copy the form, it comes as raw data: "x=value1&y=value2&z=value3". The other way around, though less frequent, is also possible, e.g., when you want to convert a list to raw data so you can use it as script in RSelenium:
|
Ah, good point. Thanks! |
Functions
query_build
andquery_parse
are very useful in the day to day work of web scraping. I think it would be great if the they were exported.The text was updated successfully, but these errors were encountered: