├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .mailmap ├── .pre-commit-config.yaml ├── .tool-versions ├── AUTHORS.rst ├── HISTORY.rst ├── LICENSE ├── LICENSE.APACHE ├── LICENSE.BSD ├── MANIFEST.in ├── README.rst ├── docs ├── .readthedocs.yaml └── source │ ├── conf.py │ ├── index.rst │ └── requirements.txt ├── pyproject.toml ├── setup.cfg ├── setup.py ├── tests ├── fixtures │ ├── LICENSE │ ├── README.md │ ├── extended-tests.json │ ├── json2xml.xslt │ ├── negative-tests.json │ ├── spec-examples-by-section.json │ ├── spec-examples.json │ └── transform-json-tests.xslt ├── test_from_fixtures.py └── test_uritemplate.py ├── tox.ini └── uritemplate ├── __init__.py ├── api.py ├── orderedset.py ├── py.typed ├── template.py └── variable.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/.mailmap -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/.tool-versions -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/LICENSE.APACHE -------------------------------------------------------------------------------- /LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/LICENSE.BSD -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/README.rst -------------------------------------------------------------------------------- /docs/.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/docs/.readthedocs.yaml -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx>=1.3.0 2 | furo 3 | doc8 4 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/setup.py -------------------------------------------------------------------------------- /tests/fixtures/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/tests/fixtures/LICENSE -------------------------------------------------------------------------------- /tests/fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/tests/fixtures/README.md -------------------------------------------------------------------------------- /tests/fixtures/extended-tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/tests/fixtures/extended-tests.json -------------------------------------------------------------------------------- /tests/fixtures/json2xml.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/tests/fixtures/json2xml.xslt -------------------------------------------------------------------------------- /tests/fixtures/negative-tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/tests/fixtures/negative-tests.json -------------------------------------------------------------------------------- /tests/fixtures/spec-examples-by-section.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/tests/fixtures/spec-examples-by-section.json -------------------------------------------------------------------------------- /tests/fixtures/spec-examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/tests/fixtures/spec-examples.json -------------------------------------------------------------------------------- /tests/fixtures/transform-json-tests.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/tests/fixtures/transform-json-tests.xslt -------------------------------------------------------------------------------- /tests/test_from_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/tests/test_from_fixtures.py -------------------------------------------------------------------------------- /tests/test_uritemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/tests/test_uritemplate.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/tox.ini -------------------------------------------------------------------------------- /uritemplate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/uritemplate/__init__.py -------------------------------------------------------------------------------- /uritemplate/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/uritemplate/api.py -------------------------------------------------------------------------------- /uritemplate/orderedset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/uritemplate/orderedset.py -------------------------------------------------------------------------------- /uritemplate/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uritemplate/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/uritemplate/template.py -------------------------------------------------------------------------------- /uritemplate/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/uritemplate/HEAD/uritemplate/variable.py --------------------------------------------------------------------------------