split filters into several files
This commit is contained in:
parent
d9e04292c4
commit
c90b5844e4
7 changed files with 167 additions and 78 deletions
|
|
@ -20,11 +20,18 @@
|
|||
import re
|
||||
import sys
|
||||
from copy import deepcopy
|
||||
from .filters import _Filter, CleanText, AttributeNotFound, XPathNotFound
|
||||
|
||||
from weboob.tools.log import getLogger
|
||||
from weboob.tools.ordereddict import OrderedDict
|
||||
from weboob.tools.browser2.page import NextPage
|
||||
|
||||
from .filters.standard import _Filter, CleanText
|
||||
from .filters.html import AttributeNotFound, XPathNotFound
|
||||
|
||||
|
||||
__all__ = ['DataError', 'AbstractElement', 'ListElement', 'ItemElement', 'TableElement', 'SkipItem']
|
||||
|
||||
|
||||
class DataError(Exception):
|
||||
"""
|
||||
Returned data from pages are incoherent.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue