├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CntxtPY.py ├── LICENSE ├── README.md ├── compression ├── compression.py └── compression_explained.md └── regex_components ├── BuildConfigExtractor.py ├── CodeIdentifierExtractor.py ├── CommentProcessor.py ├── ConfigFileParser.py ├── DependencyMapper.py ├── DocumentationAnalyzer.py ├── FileTypeProcessor.py ├── IntegrationMapper.py ├── LocalizationProcessor.py ├── LoggingAnalyzer.py └── VersionAnalyzer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CntxtPY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/CntxtPY.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/README.md -------------------------------------------------------------------------------- /compression/compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/compression/compression.py -------------------------------------------------------------------------------- /compression/compression_explained.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/compression/compression_explained.md -------------------------------------------------------------------------------- /regex_components/BuildConfigExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/regex_components/BuildConfigExtractor.py -------------------------------------------------------------------------------- /regex_components/CodeIdentifierExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/regex_components/CodeIdentifierExtractor.py -------------------------------------------------------------------------------- /regex_components/CommentProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/regex_components/CommentProcessor.py -------------------------------------------------------------------------------- /regex_components/ConfigFileParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/regex_components/ConfigFileParser.py -------------------------------------------------------------------------------- /regex_components/DependencyMapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/regex_components/DependencyMapper.py -------------------------------------------------------------------------------- /regex_components/DocumentationAnalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/regex_components/DocumentationAnalyzer.py -------------------------------------------------------------------------------- /regex_components/FileTypeProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/regex_components/FileTypeProcessor.py -------------------------------------------------------------------------------- /regex_components/IntegrationMapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/regex_components/IntegrationMapper.py -------------------------------------------------------------------------------- /regex_components/LocalizationProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/regex_components/LocalizationProcessor.py -------------------------------------------------------------------------------- /regex_components/LoggingAnalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/regex_components/LoggingAnalyzer.py -------------------------------------------------------------------------------- /regex_components/VersionAnalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandondocusen/CntxtPY/HEAD/regex_components/VersionAnalyzer.py --------------------------------------------------------------------------------