pycodeanalyzer.core.filetree.filefetcher

Summary

Classes:

FileFetcher

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&lt;str,List&lt;Tuple&lt;str,str&gt;&gt;&gt; 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 ..> Configuration

FileFetcher class diagram

Reference

class pycodeanalyzer.core.filetree.filefetcher.FileFetcher(configuration: pycodeanalyzer.core.configuration.configuration.Configuration)[source]

Bases: object

File fetcher.

Class allowing to fetch all supported file from a root directory.

reset() None[source]
isAnalyzed(fileabspath: str) bool[source]
fetch(rootDir: str) List[str][source]
defineConfig() None[source]
handleConfigation() None[source]

This file was automatically generated using better_apidoc.