pycodeanalyzer.core.filetree.filefetcher
Summary
Classes:
File fetcher. |
Diagrams
FileFetcher
classDiagram class FileFetcher { <<Class>> + Any logger + List~str~ suported_extensions + List~str~ rejected_encoding + Any encoding + bool configured + Configuration configuration + List~str~ ignoredPatterns + Dict~str,int~ languagesCount +Constructor(Configuration configuration) None +reset() None +isAnalyzed(str fileabspath) bool +fetch(str rootDir) List~str~ +defineConfig() None +handleConfigation() None } class Configuration { <<Class>> + Any logger + Any config + Dict<str,List<Tuple<str,str>>> definition +Constructor() None +load(str path) bool +defineConfig(str section, str name, str comment) None +get(str section, str name) str +getInt(str section, str name) int +getFloat(str section, str name) float +getBool(str section, str name) bool +getList(str section, str name) List~Any~ +generateTemplate(str path) None } link Configuration "class££pycodeanalyzer::core::configuration::configuration::Configuration" FileFetcher ..> ConfigurationFileFetcher class diagram
Reference
- class pycodeanalyzer.core.filetree.filefetcher.FileFetcher(configuration: pycodeanalyzer.core.configuration.configuration.Configuration)[source]
Bases:
objectFile fetcher.
Class allowing to fetch all supported file from a root directory.
This file was automatically generated using better_apidoc.