-
Notifications
You must be signed in to change notification settings - Fork 337
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
mca #59
base: multi-submit
Are you sure you want to change the base?
mca #59
Commits on Jul 27, 2014
-
Configuration menu - View commit details
-
Copy full SHA for ba70b58 - Browse repository at this point
Copy the full SHA ba70b58View commit details -
Configuration menu - View commit details
-
Copy full SHA for e53ae57 - Browse repository at this point
Copy the full SHA e53ae57View commit details
Commits on Jul 28, 2014
-
Configuration menu - View commit details
-
Copy full SHA for 3c37c92 - Browse repository at this point
Copy the full SHA 3c37c92View commit details
Commits on Sep 15, 2014
-
Handle unicode in Form::__repr__.
Add encode_if_py2 decorator. Bump version. [Resolves #25]
Configuration menu - View commit details
-
Copy full SHA for 1ebc91c - Browse repository at this point
Copy the full SHA 1ebc91cView commit details
Commits on Dec 4, 2014
-
Configuration menu - View commit details
-
Copy full SHA for eed1e00 - Browse repository at this point
Copy the full SHA eed1e00View commit details
Commits on Jan 13, 2015
-
Configuration menu - View commit details
-
Copy full SHA for c15b5ff - Browse repository at this point
Copy the full SHA c15b5ffView commit details
Commits on Apr 16, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 70da61c - Browse repository at this point
Copy the full SHA 70da61cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 56eddb9 - Browse repository at this point
Copy the full SHA 56eddb9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ee55f9 - Browse repository at this point
Copy the full SHA 2ee55f9View commit details -
The tests used to fail when the lxml library was installed: Error rai…
…sed InvalidNameError. This commit ensures that the tests pass no matter the user has installed whichever parsing library with bs4. **Explanation:** When using lxml (recommended parser in BeautifulSoup4) the parsing is little different then the inbuilt parser: BeautifulSoup('<input name="hi">') # gives "<html><body><input name='hi' /></body></html>" # while the inbuilt parser gives "<input name='hi' />" # Thus the add_field function used to fail by giving InvalidNameError The parsing of complicated forms is way much better using `lxml` and RoboBrowser compliments it well. The only issue caused was due to the individual field parsings. Forcing inbuilt parser for fields parsing fixes the issues with individual fields while ensuring the efficiency of lxml for parsing of forms.
Configuration menu - View commit details
-
Copy full SHA for eee0cd8 - Browse repository at this point
Copy the full SHA eee0cd8View commit details
Commits on Apr 17, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 4878ed3 - Browse repository at this point
Copy the full SHA 4878ed3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 567d3ae - Browse repository at this point
Copy the full SHA 567d3aeView commit details
Commits on Apr 18, 2015
-
Merge pull request #31 from voyageur/do-not-install-tests
Do not install tests
Configuration menu - View commit details
-
Copy full SHA for 1a9aa8e - Browse repository at this point
Copy the full SHA 1a9aa8eView commit details -
Configuration menu - View commit details
-
Copy full SHA for bc9deb2 - Browse repository at this point
Copy the full SHA bc9deb2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6587134 - Browse repository at this point
Copy the full SHA 6587134View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3b60ed0 - Browse repository at this point
Copy the full SHA 3b60ed0View commit details -
Configuration menu - View commit details
-
Copy full SHA for f842291 - Browse repository at this point
Copy the full SHA f842291View commit details
Commits on May 4, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 47397be - Browse repository at this point
Copy the full SHA 47397beView commit details
Commits on May 25, 2015
-
Don't serialize disabled inputs.
* Add `disabled` property on form fields. * Exclude disabled fields from serialized output. * Update unit tests. [Resolves #42]
Configuration menu - View commit details
-
Copy full SHA for c249037 - Browse repository at this point
Copy the full SHA c249037View commit details -
Configuration menu - View commit details
-
Copy full SHA for fcf2446 - Browse repository at this point
Copy the full SHA fcf2446View commit details
Commits on May 26, 2015
-
Allow method override on
Browser#open
.Method defaults to "get", but can be overridden using the optional `method` parameter. [Resolves #27]
Configuration menu - View commit details
-
Copy full SHA for d382f0c - Browse repository at this point
Copy the full SHA d382f0cView commit details
Commits on May 27, 2015
-
Configuration menu - View commit details
-
Copy full SHA for e2480c4 - Browse repository at this point
Copy the full SHA e2480c4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4bf18ee - Browse repository at this point
Copy the full SHA 4bf18eeView commit details
Commits on Jun 1, 2015
-
Configuration menu - View commit details
-
Copy full SHA for a3ba87a - Browse repository at this point
Copy the full SHA a3ba87aView commit details -
Replace magical property creation in metaclass with explicit `@property` and `@setter` decorators in field classes.
Configuration menu - View commit details
-
Copy full SHA for a9ae952 - Browse repository at this point
Copy the full SHA a9ae952View commit details
Commits on Jun 7, 2015
-
Update docs for change to Rap Genius website
The Genius website (formerly Rap Genius) changed, which broke the existing documentation example. The search results now include results matching song title as well as artist, making it difficult to guarantee the first song would match the artist being searched for. As a result the example was updated to search for a more unique band name. [Resolves #33]
Configuration menu - View commit details
-
Copy full SHA for 06c3ae4 - Browse repository at this point
Copy the full SHA 06c3ae4View commit details -
Merge pull request #45 from rcutmore/update-docs-for-rap-genius-change
Update docs for change to Rap Genius website
Configuration menu - View commit details
-
Copy full SHA for 58b47b4 - Browse repository at this point
Copy the full SHA 58b47b4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 38d646a - Browse repository at this point
Copy the full SHA 38d646aView commit details -
Offload retry logic to requests and urllib3.
Urllib3 comes with good retry logic, which is exposed through the requests `HTTPAdapter`. Attach retry options to the session adapters and delete custom retry logic from robobrowser.
1Configuration menu - View commit details
-
Copy full SHA for a243352 - Browse repository at this point
Copy the full SHA a243352View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4284c11 - Browse repository at this point
Copy the full SHA 4284c11View commit details