├── .coveragerc ├── .gitattributes ├── .gitignore ├── .isort.cfg ├── .pycodestyle.ini ├── .pydocstyle.ini ├── .pylint.ini ├── .travis.yml ├── .verchew.ini ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── MANIFEST.in ├── Makefile ├── README.md ├── bin ├── checksum ├── open └── verchew ├── docs ├── .nojekyll ├── Makefile ├── _config.yml ├── classes.png ├── conf.py ├── index.rst ├── mask.rst ├── packages.png ├── parsing.rst └── ref │ ├── index.rst │ └── jsonmask │ ├── mask.rst │ └── parsing.rst ├── index.md ├── jsonmask ├── __init__.py ├── mask.py ├── parsing.py └── tests │ ├── __init__.py │ ├── conftest.py │ ├── test_mask.py │ └── test_parsing.py ├── poetry.lock ├── pyproject.toml ├── pytest.ini ├── scent.py └── tests ├── __init__.py └── conftest.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | CHANGELOG.md merge=union 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pycodestyle.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/.pycodestyle.ini -------------------------------------------------------------------------------- /.pydocstyle.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/.pydocstyle.ini -------------------------------------------------------------------------------- /.pylint.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/.pylint.ini -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/.travis.yml -------------------------------------------------------------------------------- /.verchew.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/.verchew.ini -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Revision History 2 | 3 | ## 0.1.0 (2018/08/27) 4 | 5 | - Initial release 6 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/README.md -------------------------------------------------------------------------------- /bin/checksum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/bin/checksum -------------------------------------------------------------------------------- /bin/open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/bin/open -------------------------------------------------------------------------------- /bin/verchew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/bin/verchew -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/docs/classes.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/mask.rst: -------------------------------------------------------------------------------- 1 | Mask 2 | ==== 3 | 4 | -------------------------------------------------------------------------------- /docs/packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/docs/packages.png -------------------------------------------------------------------------------- /docs/parsing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/docs/parsing.rst -------------------------------------------------------------------------------- /docs/ref/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/docs/ref/index.rst -------------------------------------------------------------------------------- /docs/ref/jsonmask/mask.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/docs/ref/jsonmask/mask.rst -------------------------------------------------------------------------------- /docs/ref/jsonmask/parsing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/docs/ref/jsonmask/parsing.rst -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | docs/index.md -------------------------------------------------------------------------------- /jsonmask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/jsonmask/__init__.py -------------------------------------------------------------------------------- /jsonmask/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/jsonmask/mask.py -------------------------------------------------------------------------------- /jsonmask/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/jsonmask/parsing.py -------------------------------------------------------------------------------- /jsonmask/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit tests for the package.""" 2 | -------------------------------------------------------------------------------- /jsonmask/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/jsonmask/tests/conftest.py -------------------------------------------------------------------------------- /jsonmask/tests/test_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/jsonmask/tests/test_mask.py -------------------------------------------------------------------------------- /jsonmask/tests/test_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/jsonmask/tests/test_parsing.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/pytest.ini -------------------------------------------------------------------------------- /scent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/scent.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zapier/jsonmask/HEAD/tests/conftest.py --------------------------------------------------------------------------------