├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── envirotest.yml │ └── regression.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── MANIFEST.in ├── PROJECT_NAME ├── README.md ├── VERSION ├── docs ├── public │ ├── changelog.md │ ├── comparison │ │ └── table.yml │ ├── features-removed.md │ ├── index.md │ ├── redirects.yml │ ├── using │ │ ├── alpha │ │ │ ├── compound │ │ │ │ ├── fixed-length-sequences.md │ │ │ │ ├── index.md │ │ │ │ ├── map-combined.md │ │ │ │ ├── map-pattern.md │ │ │ │ ├── mapping-with-slug-keys.md │ │ │ │ ├── mapping-yaml-object.md │ │ │ │ ├── mapping.md │ │ │ │ ├── optional-keys-with-defaults.md │ │ │ │ ├── optional-keys.md │ │ │ │ ├── sequences-of-unique-items.md │ │ │ │ ├── sequences.md │ │ │ │ └── update.md │ │ │ ├── howto │ │ │ │ ├── build-yaml-document.md │ │ │ │ ├── either-or-validation.md │ │ │ │ ├── index.md │ │ │ │ ├── label-exceptions.md │ │ │ │ ├── merge-yaml-documents.md │ │ │ │ ├── revalidation.md │ │ │ │ ├── roundtripping.md │ │ │ │ ├── what-line.md │ │ │ │ └── without-a-schema.md │ │ │ ├── index.md │ │ │ ├── restrictions │ │ │ │ ├── disallowed-yaml.md │ │ │ │ ├── duplicate-keys.md │ │ │ │ ├── index.md │ │ │ │ └── loading-dirty-yaml.md │ │ │ └── scalar │ │ │ │ ├── boolean.md │ │ │ │ ├── comma-separated.md │ │ │ │ ├── datetime.md │ │ │ │ ├── decimal.md │ │ │ │ ├── email-and-url.md │ │ │ │ ├── empty.md │ │ │ │ ├── enum.md │ │ │ │ ├── float.md │ │ │ │ ├── hexadecimal-integer.md │ │ │ │ ├── index.md │ │ │ │ ├── integer.md │ │ │ │ ├── regular-expressions.md │ │ │ │ └── string.md │ │ └── index.md │ ├── what-is-yaml.md │ ├── when-to-use-validators.md │ ├── why-not │ │ ├── environment-variables-as-config.md │ │ ├── hjson.md │ │ ├── hocon.md │ │ ├── index.md │ │ ├── ini.md │ │ ├── json-schema.md │ │ ├── json.md │ │ ├── json5.md │ │ ├── ordinary-yaml.md │ │ ├── pykwalify.md │ │ ├── python-schema.md │ │ ├── sdlang.md │ │ ├── toml-indentation-1.png │ │ ├── toml.md │ │ ├── turing-complete-code.md │ │ └── xml.md │ └── why │ │ ├── duplicate-keys-disallowed.md │ │ ├── explicit-tags-removed.md │ │ ├── flow-style-removed.md │ │ ├── implicit-typing-removed.md │ │ ├── index.md │ │ ├── node-anchors-and-references-removed.md │ │ ├── not-parse-direct-representations-of-python-objects.md │ │ ├── only-parse-strings-not-files.md │ │ ├── speed-not-a-priority.md │ │ ├── syntax-typing-bad.md │ │ └── turing-complete-schema.md └── src │ ├── comparison │ └── table.yml │ ├── dirtemplate.yml │ ├── features-removed.md │ ├── index.md │ ├── redirects.yml │ ├── template │ ├── step.jinja2 │ └── story.jinja2 │ ├── using │ ├── alpha │ │ ├── compound │ │ │ └── index.md │ │ ├── howto │ │ │ └── index.md │ │ ├── index.md │ │ ├── restrictions │ │ │ └── index.md │ │ └── scalar │ │ │ └── index.md │ └── index.md │ ├── what-is-yaml.md │ ├── when-to-use-validators.md │ ├── why-not │ ├── environment-variables-as-config.md │ ├── hjson.md │ ├── hocon.md │ ├── index.md │ ├── ini.md │ ├── json-schema.md │ ├── json.md │ ├── json5.md │ ├── ordinary-yaml.md │ ├── pykwalify.md │ ├── python-schema.md │ ├── sdlang.md │ ├── toml-indentation-1.png │ ├── toml.md │ ├── turing-complete-code.md │ └── xml.md │ └── why │ ├── duplicate-keys-disallowed.md │ ├── explicit-tags-removed.md │ ├── flow-style-removed.md │ ├── implicit-typing-removed.md │ ├── index.md │ ├── node-anchors-and-references-removed.md │ ├── not-parse-direct-representations-of-python-objects.md │ ├── only-parse-strings-not-files.md │ ├── speed-not-a-priority.md │ ├── syntax-typing-bad.md │ └── turing-complete-schema.md ├── hitch ├── Dockerfile-hitch ├── debugrequirements.txt ├── engine.py ├── envirotest.py ├── hitchreqs.in ├── hitchreqs.txt ├── key.py ├── printstats.py ├── pyenv.py ├── self-env-test.sh ├── self_env_test.py └── story │ ├── boolean.story │ ├── bugs.story │ ├── build-yaml-document-from-scratch.story │ ├── commaseparated.story │ ├── datetime.story │ ├── decimal.story │ ├── dirty-load.story │ ├── disallow.story │ ├── duplicatekeys.story │ ├── email-url.story │ ├── empty.story │ ├── enum-with-item-validation.story │ ├── enum.story │ ├── fixed-sequence.story │ ├── float.story │ ├── handle-exceptions.story │ ├── map-combined.story │ ├── map-with-key-validator.story │ ├── map.story │ ├── map.toml │ ├── mappattern.story │ ├── mapping-representation.story │ ├── merge-documents.story │ ├── nested-map.story │ ├── non-schema-validation.story │ ├── optional-with-defaults.story │ ├── optional.story │ ├── or.story │ ├── quickstart.story │ ├── regexp.story │ ├── revalidation.story │ ├── roundtrip.story │ ├── scalar-hexadecimal-integer.story │ ├── scalar-integer.story │ ├── scalar-string.story │ ├── sequence.story │ ├── single-value.story │ ├── strictyaml.story │ ├── unique-sequence.story │ ├── update-with-schema.story │ ├── validator-repr.story │ └── whatline.story ├── key.sh ├── pyproject.toml ├── setup.py └── strictyaml ├── __init__.py ├── any_validator.py ├── compound.py ├── constants.py ├── dumper.py ├── exceptions.py ├── parser.py ├── representation.py ├── ruamel ├── __init__.py ├── anchor.py ├── comments.py ├── compat.py ├── composer.py ├── configobjwalker.py ├── constructor.py ├── cyaml.py ├── dumper.py ├── emitter.py ├── error.py ├── events.py ├── loader.py ├── main.py ├── nodes.py ├── parser.py ├── py.typed ├── reader.py ├── representer.py ├── resolver.py ├── scalarbool.py ├── scalarfloat.py ├── scalarint.py ├── scalarstring.py ├── scanner.py ├── serializer.py ├── timestamp.py ├── tokens.py └── util.py ├── scalar.py ├── utils.py ├── validators.py ├── yamllocation.py └── yamlpointer.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.story linguist-language=YAML 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/envirotest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/.github/workflows/envirotest.yml -------------------------------------------------------------------------------- /.github/workflows/regression.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/.github/workflows/regression.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PROJECT_NAME: -------------------------------------------------------------------------------- 1 | strictyaml 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.7.3 2 | -------------------------------------------------------------------------------- /docs/public/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/changelog.md -------------------------------------------------------------------------------- /docs/public/comparison/table.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/comparison/table.yml -------------------------------------------------------------------------------- /docs/public/features-removed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/features-removed.md -------------------------------------------------------------------------------- /docs/public/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/index.md -------------------------------------------------------------------------------- /docs/public/redirects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/redirects.yml -------------------------------------------------------------------------------- /docs/public/using/alpha/compound/fixed-length-sequences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/compound/fixed-length-sequences.md -------------------------------------------------------------------------------- /docs/public/using/alpha/compound/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/compound/index.md -------------------------------------------------------------------------------- /docs/public/using/alpha/compound/map-combined.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/compound/map-combined.md -------------------------------------------------------------------------------- /docs/public/using/alpha/compound/map-pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/compound/map-pattern.md -------------------------------------------------------------------------------- /docs/public/using/alpha/compound/mapping-with-slug-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/compound/mapping-with-slug-keys.md -------------------------------------------------------------------------------- /docs/public/using/alpha/compound/mapping-yaml-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/compound/mapping-yaml-object.md -------------------------------------------------------------------------------- /docs/public/using/alpha/compound/mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/compound/mapping.md -------------------------------------------------------------------------------- /docs/public/using/alpha/compound/optional-keys-with-defaults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/compound/optional-keys-with-defaults.md -------------------------------------------------------------------------------- /docs/public/using/alpha/compound/optional-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/compound/optional-keys.md -------------------------------------------------------------------------------- /docs/public/using/alpha/compound/sequences-of-unique-items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/compound/sequences-of-unique-items.md -------------------------------------------------------------------------------- /docs/public/using/alpha/compound/sequences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/compound/sequences.md -------------------------------------------------------------------------------- /docs/public/using/alpha/compound/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/compound/update.md -------------------------------------------------------------------------------- /docs/public/using/alpha/howto/build-yaml-document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/howto/build-yaml-document.md -------------------------------------------------------------------------------- /docs/public/using/alpha/howto/either-or-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/howto/either-or-validation.md -------------------------------------------------------------------------------- /docs/public/using/alpha/howto/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/howto/index.md -------------------------------------------------------------------------------- /docs/public/using/alpha/howto/label-exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/howto/label-exceptions.md -------------------------------------------------------------------------------- /docs/public/using/alpha/howto/merge-yaml-documents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/howto/merge-yaml-documents.md -------------------------------------------------------------------------------- /docs/public/using/alpha/howto/revalidation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/howto/revalidation.md -------------------------------------------------------------------------------- /docs/public/using/alpha/howto/roundtripping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/howto/roundtripping.md -------------------------------------------------------------------------------- /docs/public/using/alpha/howto/what-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/howto/what-line.md -------------------------------------------------------------------------------- /docs/public/using/alpha/howto/without-a-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/howto/without-a-schema.md -------------------------------------------------------------------------------- /docs/public/using/alpha/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Using StrictYAML v0.x.x 3 | --- -------------------------------------------------------------------------------- /docs/public/using/alpha/restrictions/disallowed-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/restrictions/disallowed-yaml.md -------------------------------------------------------------------------------- /docs/public/using/alpha/restrictions/duplicate-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/restrictions/duplicate-keys.md -------------------------------------------------------------------------------- /docs/public/using/alpha/restrictions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/restrictions/index.md -------------------------------------------------------------------------------- /docs/public/using/alpha/restrictions/loading-dirty-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/restrictions/loading-dirty-yaml.md -------------------------------------------------------------------------------- /docs/public/using/alpha/scalar/boolean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/scalar/boolean.md -------------------------------------------------------------------------------- /docs/public/using/alpha/scalar/comma-separated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/scalar/comma-separated.md -------------------------------------------------------------------------------- /docs/public/using/alpha/scalar/datetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/scalar/datetime.md -------------------------------------------------------------------------------- /docs/public/using/alpha/scalar/decimal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/scalar/decimal.md -------------------------------------------------------------------------------- /docs/public/using/alpha/scalar/email-and-url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/scalar/email-and-url.md -------------------------------------------------------------------------------- /docs/public/using/alpha/scalar/empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/scalar/empty.md -------------------------------------------------------------------------------- /docs/public/using/alpha/scalar/enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/scalar/enum.md -------------------------------------------------------------------------------- /docs/public/using/alpha/scalar/float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/scalar/float.md -------------------------------------------------------------------------------- /docs/public/using/alpha/scalar/hexadecimal-integer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/scalar/hexadecimal-integer.md -------------------------------------------------------------------------------- /docs/public/using/alpha/scalar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/scalar/index.md -------------------------------------------------------------------------------- /docs/public/using/alpha/scalar/integer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/scalar/integer.md -------------------------------------------------------------------------------- /docs/public/using/alpha/scalar/regular-expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/scalar/regular-expressions.md -------------------------------------------------------------------------------- /docs/public/using/alpha/scalar/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/alpha/scalar/string.md -------------------------------------------------------------------------------- /docs/public/using/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/using/index.md -------------------------------------------------------------------------------- /docs/public/what-is-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/what-is-yaml.md -------------------------------------------------------------------------------- /docs/public/when-to-use-validators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/when-to-use-validators.md -------------------------------------------------------------------------------- /docs/public/why-not/environment-variables-as-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why-not/environment-variables-as-config.md -------------------------------------------------------------------------------- /docs/public/why-not/hjson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why-not/hjson.md -------------------------------------------------------------------------------- /docs/public/why-not/hocon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why-not/hocon.md -------------------------------------------------------------------------------- /docs/public/why-not/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why-not/index.md -------------------------------------------------------------------------------- /docs/public/why-not/ini.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why-not/ini.md -------------------------------------------------------------------------------- /docs/public/why-not/json-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why-not/json-schema.md -------------------------------------------------------------------------------- /docs/public/why-not/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why-not/json.md -------------------------------------------------------------------------------- /docs/public/why-not/json5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why-not/json5.md -------------------------------------------------------------------------------- /docs/public/why-not/ordinary-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why-not/ordinary-yaml.md -------------------------------------------------------------------------------- /docs/public/why-not/pykwalify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why-not/pykwalify.md -------------------------------------------------------------------------------- /docs/public/why-not/python-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why-not/python-schema.md -------------------------------------------------------------------------------- /docs/public/why-not/sdlang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why-not/sdlang.md -------------------------------------------------------------------------------- /docs/public/why-not/toml-indentation-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why-not/toml-indentation-1.png -------------------------------------------------------------------------------- /docs/public/why-not/toml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why-not/toml.md -------------------------------------------------------------------------------- /docs/public/why-not/turing-complete-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why-not/turing-complete-code.md -------------------------------------------------------------------------------- /docs/public/why-not/xml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why-not/xml.md -------------------------------------------------------------------------------- /docs/public/why/duplicate-keys-disallowed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why/duplicate-keys-disallowed.md -------------------------------------------------------------------------------- /docs/public/why/explicit-tags-removed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why/explicit-tags-removed.md -------------------------------------------------------------------------------- /docs/public/why/flow-style-removed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why/flow-style-removed.md -------------------------------------------------------------------------------- /docs/public/why/implicit-typing-removed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why/implicit-typing-removed.md -------------------------------------------------------------------------------- /docs/public/why/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why/index.md -------------------------------------------------------------------------------- /docs/public/why/node-anchors-and-references-removed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why/node-anchors-and-references-removed.md -------------------------------------------------------------------------------- /docs/public/why/not-parse-direct-representations-of-python-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why/not-parse-direct-representations-of-python-objects.md -------------------------------------------------------------------------------- /docs/public/why/only-parse-strings-not-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why/only-parse-strings-not-files.md -------------------------------------------------------------------------------- /docs/public/why/speed-not-a-priority.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why/speed-not-a-priority.md -------------------------------------------------------------------------------- /docs/public/why/syntax-typing-bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why/syntax-typing-bad.md -------------------------------------------------------------------------------- /docs/public/why/turing-complete-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/public/why/turing-complete-schema.md -------------------------------------------------------------------------------- /docs/src/comparison/table.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/comparison/table.yml -------------------------------------------------------------------------------- /docs/src/dirtemplate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/dirtemplate.yml -------------------------------------------------------------------------------- /docs/src/features-removed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/features-removed.md -------------------------------------------------------------------------------- /docs/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/index.md -------------------------------------------------------------------------------- /docs/src/redirects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/redirects.yml -------------------------------------------------------------------------------- /docs/src/template/step.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/template/step.jinja2 -------------------------------------------------------------------------------- /docs/src/template/story.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/template/story.jinja2 -------------------------------------------------------------------------------- /docs/src/using/alpha/compound/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/using/alpha/compound/index.md -------------------------------------------------------------------------------- /docs/src/using/alpha/howto/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/using/alpha/howto/index.md -------------------------------------------------------------------------------- /docs/src/using/alpha/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Using StrictYAML v0.x.x 3 | --- 4 | -------------------------------------------------------------------------------- /docs/src/using/alpha/restrictions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/using/alpha/restrictions/index.md -------------------------------------------------------------------------------- /docs/src/using/alpha/scalar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/using/alpha/scalar/index.md -------------------------------------------------------------------------------- /docs/src/using/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/using/index.md -------------------------------------------------------------------------------- /docs/src/what-is-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/what-is-yaml.md -------------------------------------------------------------------------------- /docs/src/when-to-use-validators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/when-to-use-validators.md -------------------------------------------------------------------------------- /docs/src/why-not/environment-variables-as-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why-not/environment-variables-as-config.md -------------------------------------------------------------------------------- /docs/src/why-not/hjson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why-not/hjson.md -------------------------------------------------------------------------------- /docs/src/why-not/hocon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why-not/hocon.md -------------------------------------------------------------------------------- /docs/src/why-not/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why-not/index.md -------------------------------------------------------------------------------- /docs/src/why-not/ini.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why-not/ini.md -------------------------------------------------------------------------------- /docs/src/why-not/json-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why-not/json-schema.md -------------------------------------------------------------------------------- /docs/src/why-not/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why-not/json.md -------------------------------------------------------------------------------- /docs/src/why-not/json5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why-not/json5.md -------------------------------------------------------------------------------- /docs/src/why-not/ordinary-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why-not/ordinary-yaml.md -------------------------------------------------------------------------------- /docs/src/why-not/pykwalify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why-not/pykwalify.md -------------------------------------------------------------------------------- /docs/src/why-not/python-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why-not/python-schema.md -------------------------------------------------------------------------------- /docs/src/why-not/sdlang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why-not/sdlang.md -------------------------------------------------------------------------------- /docs/src/why-not/toml-indentation-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why-not/toml-indentation-1.png -------------------------------------------------------------------------------- /docs/src/why-not/toml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why-not/toml.md -------------------------------------------------------------------------------- /docs/src/why-not/turing-complete-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why-not/turing-complete-code.md -------------------------------------------------------------------------------- /docs/src/why-not/xml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why-not/xml.md -------------------------------------------------------------------------------- /docs/src/why/duplicate-keys-disallowed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why/duplicate-keys-disallowed.md -------------------------------------------------------------------------------- /docs/src/why/explicit-tags-removed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why/explicit-tags-removed.md -------------------------------------------------------------------------------- /docs/src/why/flow-style-removed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why/flow-style-removed.md -------------------------------------------------------------------------------- /docs/src/why/implicit-typing-removed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why/implicit-typing-removed.md -------------------------------------------------------------------------------- /docs/src/why/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why/index.md -------------------------------------------------------------------------------- /docs/src/why/node-anchors-and-references-removed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why/node-anchors-and-references-removed.md -------------------------------------------------------------------------------- /docs/src/why/not-parse-direct-representations-of-python-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why/not-parse-direct-representations-of-python-objects.md -------------------------------------------------------------------------------- /docs/src/why/only-parse-strings-not-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why/only-parse-strings-not-files.md -------------------------------------------------------------------------------- /docs/src/why/speed-not-a-priority.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why/speed-not-a-priority.md -------------------------------------------------------------------------------- /docs/src/why/syntax-typing-bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why/syntax-typing-bad.md -------------------------------------------------------------------------------- /docs/src/why/turing-complete-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/docs/src/why/turing-complete-schema.md -------------------------------------------------------------------------------- /hitch/Dockerfile-hitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/Dockerfile-hitch -------------------------------------------------------------------------------- /hitch/debugrequirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/debugrequirements.txt -------------------------------------------------------------------------------- /hitch/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/engine.py -------------------------------------------------------------------------------- /hitch/envirotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/envirotest.py -------------------------------------------------------------------------------- /hitch/hitchreqs.in: -------------------------------------------------------------------------------- 1 | hitchpylibrarytoolkit==0.6.17 2 | -------------------------------------------------------------------------------- /hitch/hitchreqs.txt: -------------------------------------------------------------------------------- 1 | hitchpylibrarytoolkit==0.6.17 2 | -------------------------------------------------------------------------------- /hitch/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/key.py -------------------------------------------------------------------------------- /hitch/printstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/printstats.py -------------------------------------------------------------------------------- /hitch/pyenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/pyenv.py -------------------------------------------------------------------------------- /hitch/self-env-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/self-env-test.sh -------------------------------------------------------------------------------- /hitch/self_env_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/self_env_test.py -------------------------------------------------------------------------------- /hitch/story/boolean.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/boolean.story -------------------------------------------------------------------------------- /hitch/story/bugs.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/bugs.story -------------------------------------------------------------------------------- /hitch/story/build-yaml-document-from-scratch.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/build-yaml-document-from-scratch.story -------------------------------------------------------------------------------- /hitch/story/commaseparated.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/commaseparated.story -------------------------------------------------------------------------------- /hitch/story/datetime.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/datetime.story -------------------------------------------------------------------------------- /hitch/story/decimal.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/decimal.story -------------------------------------------------------------------------------- /hitch/story/dirty-load.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/dirty-load.story -------------------------------------------------------------------------------- /hitch/story/disallow.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/disallow.story -------------------------------------------------------------------------------- /hitch/story/duplicatekeys.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/duplicatekeys.story -------------------------------------------------------------------------------- /hitch/story/email-url.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/email-url.story -------------------------------------------------------------------------------- /hitch/story/empty.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/empty.story -------------------------------------------------------------------------------- /hitch/story/enum-with-item-validation.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/enum-with-item-validation.story -------------------------------------------------------------------------------- /hitch/story/enum.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/enum.story -------------------------------------------------------------------------------- /hitch/story/fixed-sequence.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/fixed-sequence.story -------------------------------------------------------------------------------- /hitch/story/float.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/float.story -------------------------------------------------------------------------------- /hitch/story/handle-exceptions.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/handle-exceptions.story -------------------------------------------------------------------------------- /hitch/story/map-combined.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/map-combined.story -------------------------------------------------------------------------------- /hitch/story/map-with-key-validator.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/map-with-key-validator.story -------------------------------------------------------------------------------- /hitch/story/map.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/map.story -------------------------------------------------------------------------------- /hitch/story/map.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/map.toml -------------------------------------------------------------------------------- /hitch/story/mappattern.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/mappattern.story -------------------------------------------------------------------------------- /hitch/story/mapping-representation.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/mapping-representation.story -------------------------------------------------------------------------------- /hitch/story/merge-documents.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/merge-documents.story -------------------------------------------------------------------------------- /hitch/story/nested-map.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/nested-map.story -------------------------------------------------------------------------------- /hitch/story/non-schema-validation.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/non-schema-validation.story -------------------------------------------------------------------------------- /hitch/story/optional-with-defaults.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/optional-with-defaults.story -------------------------------------------------------------------------------- /hitch/story/optional.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/optional.story -------------------------------------------------------------------------------- /hitch/story/or.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/or.story -------------------------------------------------------------------------------- /hitch/story/quickstart.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/quickstart.story -------------------------------------------------------------------------------- /hitch/story/regexp.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/regexp.story -------------------------------------------------------------------------------- /hitch/story/revalidation.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/revalidation.story -------------------------------------------------------------------------------- /hitch/story/roundtrip.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/roundtrip.story -------------------------------------------------------------------------------- /hitch/story/scalar-hexadecimal-integer.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/scalar-hexadecimal-integer.story -------------------------------------------------------------------------------- /hitch/story/scalar-integer.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/scalar-integer.story -------------------------------------------------------------------------------- /hitch/story/scalar-string.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/scalar-string.story -------------------------------------------------------------------------------- /hitch/story/sequence.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/sequence.story -------------------------------------------------------------------------------- /hitch/story/single-value.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/single-value.story -------------------------------------------------------------------------------- /hitch/story/strictyaml.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/strictyaml.story -------------------------------------------------------------------------------- /hitch/story/unique-sequence.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/unique-sequence.story -------------------------------------------------------------------------------- /hitch/story/update-with-schema.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/update-with-schema.story -------------------------------------------------------------------------------- /hitch/story/validator-repr.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/validator-repr.story -------------------------------------------------------------------------------- /hitch/story/whatline.story: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/hitch/story/whatline.story -------------------------------------------------------------------------------- /key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/key.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/setup.py -------------------------------------------------------------------------------- /strictyaml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/__init__.py -------------------------------------------------------------------------------- /strictyaml/any_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/any_validator.py -------------------------------------------------------------------------------- /strictyaml/compound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/compound.py -------------------------------------------------------------------------------- /strictyaml/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/constants.py -------------------------------------------------------------------------------- /strictyaml/dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/dumper.py -------------------------------------------------------------------------------- /strictyaml/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/exceptions.py -------------------------------------------------------------------------------- /strictyaml/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/parser.py -------------------------------------------------------------------------------- /strictyaml/representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/representation.py -------------------------------------------------------------------------------- /strictyaml/ruamel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/__init__.py -------------------------------------------------------------------------------- /strictyaml/ruamel/anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/anchor.py -------------------------------------------------------------------------------- /strictyaml/ruamel/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/comments.py -------------------------------------------------------------------------------- /strictyaml/ruamel/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/compat.py -------------------------------------------------------------------------------- /strictyaml/ruamel/composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/composer.py -------------------------------------------------------------------------------- /strictyaml/ruamel/configobjwalker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/configobjwalker.py -------------------------------------------------------------------------------- /strictyaml/ruamel/constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/constructor.py -------------------------------------------------------------------------------- /strictyaml/ruamel/cyaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/cyaml.py -------------------------------------------------------------------------------- /strictyaml/ruamel/dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/dumper.py -------------------------------------------------------------------------------- /strictyaml/ruamel/emitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/emitter.py -------------------------------------------------------------------------------- /strictyaml/ruamel/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/error.py -------------------------------------------------------------------------------- /strictyaml/ruamel/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/events.py -------------------------------------------------------------------------------- /strictyaml/ruamel/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/loader.py -------------------------------------------------------------------------------- /strictyaml/ruamel/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/main.py -------------------------------------------------------------------------------- /strictyaml/ruamel/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/nodes.py -------------------------------------------------------------------------------- /strictyaml/ruamel/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/parser.py -------------------------------------------------------------------------------- /strictyaml/ruamel/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strictyaml/ruamel/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/reader.py -------------------------------------------------------------------------------- /strictyaml/ruamel/representer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/representer.py -------------------------------------------------------------------------------- /strictyaml/ruamel/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/resolver.py -------------------------------------------------------------------------------- /strictyaml/ruamel/scalarbool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/scalarbool.py -------------------------------------------------------------------------------- /strictyaml/ruamel/scalarfloat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/scalarfloat.py -------------------------------------------------------------------------------- /strictyaml/ruamel/scalarint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/scalarint.py -------------------------------------------------------------------------------- /strictyaml/ruamel/scalarstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/scalarstring.py -------------------------------------------------------------------------------- /strictyaml/ruamel/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/scanner.py -------------------------------------------------------------------------------- /strictyaml/ruamel/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/serializer.py -------------------------------------------------------------------------------- /strictyaml/ruamel/timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/timestamp.py -------------------------------------------------------------------------------- /strictyaml/ruamel/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/tokens.py -------------------------------------------------------------------------------- /strictyaml/ruamel/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/ruamel/util.py -------------------------------------------------------------------------------- /strictyaml/scalar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/scalar.py -------------------------------------------------------------------------------- /strictyaml/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/utils.py -------------------------------------------------------------------------------- /strictyaml/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/validators.py -------------------------------------------------------------------------------- /strictyaml/yamllocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/yamllocation.py -------------------------------------------------------------------------------- /strictyaml/yamlpointer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crdoconnor/strictyaml/HEAD/strictyaml/yamlpointer.py --------------------------------------------------------------------------------