├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── LICENSE ├── README.md ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ ├── doc_maker.rst │ ├── doc_writer.rst │ └── index.rst ├── hydra_python_core ├── __init__.py ├── doc_maker.py ├── doc_writer.py └── namespace.py ├── requirements-dev.txt ├── requirements.txt ├── samples ├── __init__.py ├── cli.py ├── doc_writer_sample.py ├── doc_writer_sample_output.py ├── hydra_doc_sample.py ├── link_open_api.yaml └── petstore_openapi.yaml ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── test_doc_maker.py ├── test_doc_writer ├── test_context.py ├── test_hydra_class.py ├── test_hydra_collection.py └── test_hydra_entrypoint.py └── test_pep8.py /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/doc_maker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/docs/source/doc_maker.rst -------------------------------------------------------------------------------- /docs/source/doc_writer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/docs/source/doc_writer.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /hydra_python_core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hydra_python_core/doc_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/hydra_python_core/doc_maker.py -------------------------------------------------------------------------------- /hydra_python_core/doc_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/hydra_python_core/doc_writer.py -------------------------------------------------------------------------------- /hydra_python_core/namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/hydra_python_core/namespace.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyld 2 | requests 3 | sphinx==3.1.2 4 | pytest==6.2.4 -------------------------------------------------------------------------------- /samples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/samples/cli.py -------------------------------------------------------------------------------- /samples/doc_writer_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/samples/doc_writer_sample.py -------------------------------------------------------------------------------- /samples/doc_writer_sample_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/samples/doc_writer_sample_output.py -------------------------------------------------------------------------------- /samples/hydra_doc_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/samples/hydra_doc_sample.py -------------------------------------------------------------------------------- /samples/link_open_api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/samples/link_open_api.yaml -------------------------------------------------------------------------------- /samples/petstore_openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/samples/petstore_openapi.yaml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_doc_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/tests/test_doc_maker.py -------------------------------------------------------------------------------- /tests/test_doc_writer/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/tests/test_doc_writer/test_context.py -------------------------------------------------------------------------------- /tests/test_doc_writer/test_hydra_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/tests/test_doc_writer/test_hydra_class.py -------------------------------------------------------------------------------- /tests/test_doc_writer/test_hydra_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/tests/test_doc_writer/test_hydra_collection.py -------------------------------------------------------------------------------- /tests/test_doc_writer/test_hydra_entrypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/tests/test_doc_writer/test_hydra_entrypoint.py -------------------------------------------------------------------------------- /tests/test_pep8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTTP-APIs/hydra-python-core/HEAD/tests/test_pep8.py --------------------------------------------------------------------------------