Skip to content
  1. Sep 09, 2020
  2. Feb 12, 2020
  3. Jan 08, 2020
  4. Aug 28, 2019
  5. Jul 18, 2019
    • Quentin Defenouillere's avatar
      [weboob/browser/elements] Implement the empty_xpath attribute · 5b4cdf13
      Quentin Defenouillere authored and hydrargyrum's avatar hydrargyrum committed
      The empty_xpath attribute is used to fetch an explicit message on a page
      when there is no account, no transaction or no investment for example.
      The goal of this attribute is to avoid silent bugs when an item page has
      completely changed and the item_xpath does not match any element
      anymore: in these cases we don't scrape any element but we don't crash
      either ; whereas if empty_xpath is defined at least we will have a
      warning that the page may have changed.
      5b4cdf13
  6. Feb 25, 2019
  7. Feb 24, 2019
  8. May 28, 2018
  9. May 05, 2018
  10. Nov 18, 2017
  11. Aug 30, 2017
  12. Jun 23, 2017
    • Florent Fourcot's avatar
      elements: better handling of SkipItem · 4b8ccfe4
      Florent Fourcot authored
      We sometimes raises a SkipItem exception in attributes parsing, instead
      to use filters like "condition" of "validate" methods. Even it was not
      designed for that before, it's sometimes useful and easier to do so.
      
      Since we accept it as a valid behavior (upper levels handle this
      exception), we should not flood our users with a warning
      4b8ccfe4
  13. Jun 19, 2017
  14. Jun 17, 2017
  15. Apr 30, 2017
  16. Feb 18, 2017
  17. Feb 09, 2017
  18. Jan 25, 2017
  19. Jan 21, 2017
  20. Jun 09, 2016
  21. May 05, 2016
  22. Apr 12, 2016
  23. Mar 12, 2016
  24. Sep 10, 2015
  25. Mar 12, 2015
  26. Dec 07, 2014
  27. Dec 05, 2014
  28. Dec 03, 2014
  29. Oct 11, 2014
  30. Oct 10, 2014
    • Laurent Bachelier's avatar
      pep8 blank lines fixes · 448c06d1
      Laurent Bachelier authored
      flake8 --select W391,E302,E301,E304
      
      autopep8 can't fix W391 even though it claims it can.
      Fixed using a simple custom script.
      448c06d1
    • Laurent Bachelier's avatar
      pep8 fixes, modernizations · 6161a0aa
      Laurent Bachelier authored
      autopep8 -a -r -i --select E711,E712,W601,W602,W603,W604,W690,E304,E401,E502 .
      Also includes some manual reindentations (many are left after the print()
      changes).
      Manually checked, some modernizations not commited here.
      6161a0aa
  31. Oct 07, 2014
    • Laurent Bachelier's avatar
      logging: Create a new level DEBUG_FILTERS · 7be9a646
      Laurent Bachelier authored
      This is a cleaner approach that requires less configuration
      in other applications.
      This also easily allows us to have another color.
      
      Many checks were made on being exactly at the DEBUG level, they were
      fixed to also check on being below DEBUG (i.e. DEBUG_FILTERS).
      7be9a646
  32. 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