Skip to content
  1. Apr 03, 2023
  2. Apr 26, 2021
  3. Apr 04, 2021
  4. Oct 28, 2020
  5. Jun 03, 2020
  6. Mar 05, 2020
  7. Jan 30, 2020
  8. Mar 16, 2019
  9. Feb 24, 2019
  10. Jan 21, 2017
  11. Nov 18, 2016
  12. Sep 08, 2016
  13. Jun 10, 2016
  14. Jul 05, 2015
  15. Apr 20, 2015
  16. Mar 09, 2015
  17. Oct 07, 2014
  18. Oct 06, 2014
    • Romain Bignon's avatar
      rename things related to browsers · d61e15cf
      Romain Bignon authored
      weboob.tools.browser -> weboob.deprecated.browser
      weboob.tools.parsers -> weboob.deprecated.browser.parsers
      weboob.tools.mech -> weboob.deprecated.mech
      weboob.browser2 -> weboob.browser
      weboob.core.exceptions -> weboob.exceptions
      
      Also, the new tree for browser2 is:
      
      weboob.browser: import weboob.browser.browsers.* and weboob.browser.url.*
      weboob.browser.browsers: all browsers (including PagesBrowser and LoginBrowser)
      weboob.browser.url: the URL class
      weboob.browser.profiles: all Profile classes
      weboob.browser.sessions: WeboobSession and FuturesSession
      weboob.browser.cookies: that's a cookies thing
      weboob.browser.pages: all Page and derivated classes, and Form class
      weboob.browser.exceptions: specific browser exceptions
      weboob.browser.elements: AbstractElement classes, and 'method' decorator
      weboob.browser.filters.*: all filters
      d61e15cf
  19. Sep 26, 2014
  20. Aug 07, 2013
  21. Apr 01, 2013
  22. Mar 15, 2013
    • Laurent Bachelier's avatar
      Fix comparisons to None · e0542c2e
      Laurent Bachelier authored
      Diff checked manually.
      
      autopep8 -a -ir -j2 --select=E711 .
      
      This required the "agressive" option because it can change code
      behavior.
      e0542c2e
  23. Feb 26, 2013
  24. Feb 23, 2013
  25. Jan 16, 2013
  26. Oct 27, 2012
  27. Sep 01, 2012
  28. Aug 24, 2012
  29. Aug 20, 2012
  30. Jul 02, 2012
  31. May 15, 2012
  32. May 12, 2012
  33. Apr 17, 2012
  34. Mar 14, 2012
    • Laurent Bachelier's avatar
      PEP8 style fixes and other small style fixes · 006e97a8
      Laurent Bachelier authored
      I used autopep8 on some files and did carefully check the changes.
      I ignored E501,E302,E231,E225,E222,E221,E241,E203 in my search, and at
      least E501 on any autopep8 run.
      
      Other style fixes not related to PEP8:
      * Only use new-style classes. I don't think the usage of old-style
        classes was voluntary. Old-style classes are removed in Python 3.
      * Convert an if/else to a one-liner in mediawiki, change docstring style
        change to a comment something that wasn't really appropriate for a
        docstring.
      * Unneeded first if condition in meteofrance
      006e97a8