├── .github └── workflows │ ├── deutschland_generator.yml │ ├── openapi_check.yaml │ ├── pages.yml │ └── schemathesis.yaml ├── CNAME ├── README.md ├── README_en.md ├── generator_config.yaml ├── index.html ├── openapi.yaml ├── openapi_en.yaml └── python-client ├── .openapi-generator-ignore ├── .openapi-generator ├── FILES └── VERSION ├── README.md ├── deutschland └── feiertage │ ├── __init__.py │ ├── api │ ├── __init__.py │ └── default_api.py │ ├── api_client.py │ ├── apis │ └── __init__.py │ ├── configuration.py │ ├── exceptions.py │ ├── model │ ├── __init__.py │ └── feiertag.py │ ├── model_utils.py │ ├── models │ └── __init__.py │ └── rest.py ├── docs ├── DefaultApi.md └── Feiertag.md ├── pyproject.toml ├── requirements.txt ├── sphinx-docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat └── source │ ├── feiertage.api.rst │ ├── feiertage.apis.rst │ ├── feiertage.model.rst │ ├── feiertage.models.rst │ ├── feiertage.rst │ └── modules.rst ├── test-requirements.txt ├── test ├── __init__.py ├── test_default_api.py └── test_feiertag.py └── tox.ini /.github/workflows/deutschland_generator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/.github/workflows/deutschland_generator.yml -------------------------------------------------------------------------------- /.github/workflows/openapi_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/.github/workflows/openapi_check.yaml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.github/workflows/schemathesis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/.github/workflows/schemathesis.yaml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | feiertage.api.bund.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/README_en.md -------------------------------------------------------------------------------- /generator_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/generator_config.yaml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/index.html -------------------------------------------------------------------------------- /openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/openapi.yaml -------------------------------------------------------------------------------- /openapi_en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/openapi_en.yaml -------------------------------------------------------------------------------- /python-client/.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/.openapi-generator-ignore -------------------------------------------------------------------------------- /python-client/.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/.openapi-generator/FILES -------------------------------------------------------------------------------- /python-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.1.0 -------------------------------------------------------------------------------- /python-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/README.md -------------------------------------------------------------------------------- /python-client/deutschland/feiertage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/deutschland/feiertage/__init__.py -------------------------------------------------------------------------------- /python-client/deutschland/feiertage/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/deutschland/feiertage/api/__init__.py -------------------------------------------------------------------------------- /python-client/deutschland/feiertage/api/default_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/deutschland/feiertage/api/default_api.py -------------------------------------------------------------------------------- /python-client/deutschland/feiertage/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/deutschland/feiertage/api_client.py -------------------------------------------------------------------------------- /python-client/deutschland/feiertage/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/deutschland/feiertage/apis/__init__.py -------------------------------------------------------------------------------- /python-client/deutschland/feiertage/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/deutschland/feiertage/configuration.py -------------------------------------------------------------------------------- /python-client/deutschland/feiertage/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/deutschland/feiertage/exceptions.py -------------------------------------------------------------------------------- /python-client/deutschland/feiertage/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/deutschland/feiertage/model/__init__.py -------------------------------------------------------------------------------- /python-client/deutschland/feiertage/model/feiertag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/deutschland/feiertage/model/feiertag.py -------------------------------------------------------------------------------- /python-client/deutschland/feiertage/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/deutschland/feiertage/model_utils.py -------------------------------------------------------------------------------- /python-client/deutschland/feiertage/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/deutschland/feiertage/models/__init__.py -------------------------------------------------------------------------------- /python-client/deutschland/feiertage/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/deutschland/feiertage/rest.py -------------------------------------------------------------------------------- /python-client/docs/DefaultApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/docs/DefaultApi.md -------------------------------------------------------------------------------- /python-client/docs/Feiertag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/docs/Feiertag.md -------------------------------------------------------------------------------- /python-client/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/pyproject.toml -------------------------------------------------------------------------------- /python-client/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/requirements.txt -------------------------------------------------------------------------------- /python-client/sphinx-docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/sphinx-docs/Makefile -------------------------------------------------------------------------------- /python-client/sphinx-docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/sphinx-docs/conf.py -------------------------------------------------------------------------------- /python-client/sphinx-docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/sphinx-docs/index.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/sphinx-docs/make.bat -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/feiertage.api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/sphinx-docs/source/feiertage.api.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/feiertage.apis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/sphinx-docs/source/feiertage.apis.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/feiertage.model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/sphinx-docs/source/feiertage.model.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/feiertage.models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/sphinx-docs/source/feiertage.models.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/feiertage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/sphinx-docs/source/feiertage.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/sphinx-docs/source/modules.rst -------------------------------------------------------------------------------- /python-client/test-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest-cov>=2.8.1 2 | -------------------------------------------------------------------------------- /python-client/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-client/test/test_default_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/test/test_default_api.py -------------------------------------------------------------------------------- /python-client/test/test_feiertag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/test/test_feiertag.py -------------------------------------------------------------------------------- /python-client/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/feiertage-api/HEAD/python-client/tox.ini --------------------------------------------------------------------------------