├── .github └── workflows │ ├── deploy.yml │ └── test.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── MANIFEST.in ├── README.md ├── comment_parser ├── __init__.py ├── comment_parser.py └── parsers │ ├── __init__.py │ ├── c_parser.py │ ├── common.py │ ├── go_parser.py │ ├── html_parser.py │ ├── js_parser.py │ ├── python_parser.py │ ├── ruby_parser.py │ ├── shell_parser.py │ └── tests │ ├── c_parser_test.py │ ├── go_parser_test.py │ ├── html_parser_test.py │ ├── js_parser_test.py │ ├── python_parser_test.py │ ├── ruby_parser_test.py │ └── shell_parser_test.py ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg └── setup.py /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/README.md -------------------------------------------------------------------------------- /comment_parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comment_parser/comment_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/comment_parser/comment_parser.py -------------------------------------------------------------------------------- /comment_parser/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comment_parser/parsers/c_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/comment_parser/parsers/c_parser.py -------------------------------------------------------------------------------- /comment_parser/parsers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/comment_parser/parsers/common.py -------------------------------------------------------------------------------- /comment_parser/parsers/go_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/comment_parser/parsers/go_parser.py -------------------------------------------------------------------------------- /comment_parser/parsers/html_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/comment_parser/parsers/html_parser.py -------------------------------------------------------------------------------- /comment_parser/parsers/js_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/comment_parser/parsers/js_parser.py -------------------------------------------------------------------------------- /comment_parser/parsers/python_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/comment_parser/parsers/python_parser.py -------------------------------------------------------------------------------- /comment_parser/parsers/ruby_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/comment_parser/parsers/ruby_parser.py -------------------------------------------------------------------------------- /comment_parser/parsers/shell_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/comment_parser/parsers/shell_parser.py -------------------------------------------------------------------------------- /comment_parser/parsers/tests/c_parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/comment_parser/parsers/tests/c_parser_test.py -------------------------------------------------------------------------------- /comment_parser/parsers/tests/go_parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/comment_parser/parsers/tests/go_parser_test.py -------------------------------------------------------------------------------- /comment_parser/parsers/tests/html_parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/comment_parser/parsers/tests/html_parser_test.py -------------------------------------------------------------------------------- /comment_parser/parsers/tests/js_parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/comment_parser/parsers/tests/js_parser_test.py -------------------------------------------------------------------------------- /comment_parser/parsers/tests/python_parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/comment_parser/parsers/tests/python_parser_test.py -------------------------------------------------------------------------------- /comment_parser/parsers/tests/ruby_parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/comment_parser/parsers/tests/ruby_parser_test.py -------------------------------------------------------------------------------- /comment_parser/parsers/tests/shell_parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/comment_parser/parsers/tests/shell_parser_test.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-magic==0.4.27 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | 4 | [pytype] 5 | inputs = comment_parser 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanralphaviles/comment_parser/HEAD/setup.py --------------------------------------------------------------------------------