|
|
|
add_include(self,
include)
Adds an include path to the scanner. |
source code
|
|
|
add_exclude(self,
exclude)
Adds an exclude path to the scanner. |
source code
|
|
|
add_exclude_file(self,
exclude)
Adds an exclude file to the scanner. |
source code
|
|
|
add_selector(self,
selector)
Add selector to the scanner. |
source code
|
|
|
add_filetype(self,
filetype)
Adds a filetype selection to the scanner. |
source code
|
|
|
is_included(self,
path)
Returns if path is included by the scanner. |
source code
|
|
|
is_excluded(self,
path)
Returns if path is excluded by the scanner. |
source code
|
|
|
is_selected(self,
path)
Returns if path is selected by all selectors in the scanner. |
source code
|
|
|
is_filetype(self,
path)
Test if a file matches one filetype. |
source code
|
|
|
match(self,
filename,
pattern)
Is filename matching pattern? |
source code
|
|
|
test_path(self,
root,
relpath)
Test if a path matches filetype, include, exclude, and selection process. |
source code
|
|
|
|
|
|
|
scan(self)
Abstract method which much be overriden to implement the scanning process. |
source code
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__
|