├── .github └── workflows │ └── tests.yml ├── .gitignore ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── LICENSE ├── MAINTAINERS ├── README.md ├── pyproject.toml ├── setup.py ├── src └── apispec_fromfile │ ├── __init__.py │ └── plugin.py ├── tests ├── __init__.py ├── my-spec-file.yml └── test_fromfile.py └── tox.ini /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/python-apispec-fromfile/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/python-apispec-fromfile/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/python-apispec-fromfile/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/python-apispec-fromfile/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/python-apispec-fromfile/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/python-apispec-fromfile/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/python-apispec-fromfile/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/python-apispec-fromfile/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/python-apispec-fromfile/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/python-apispec-fromfile/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/python-apispec-fromfile/HEAD/setup.py -------------------------------------------------------------------------------- /src/apispec_fromfile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/python-apispec-fromfile/HEAD/src/apispec_fromfile/__init__.py -------------------------------------------------------------------------------- /src/apispec_fromfile/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/python-apispec-fromfile/HEAD/src/apispec_fromfile/plugin.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/my-spec-file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/python-apispec-fromfile/HEAD/tests/my-spec-file.yml -------------------------------------------------------------------------------- /tests/test_fromfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/python-apispec-fromfile/HEAD/tests/test_fromfile.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/python-apispec-fromfile/HEAD/tox.ini --------------------------------------------------------------------------------