├── .gitignore ├── README.md ├── dictshield ├── __init__.py ├── base.py ├── document.py └── fields.py ├── examples ├── creating_objects.py ├── creating_objects_output.txt ├── validation.py └── validation_output.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exfm/dictshield/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exfm/dictshield/HEAD/README.md -------------------------------------------------------------------------------- /dictshield/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dictshield/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exfm/dictshield/HEAD/dictshield/base.py -------------------------------------------------------------------------------- /dictshield/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exfm/dictshield/HEAD/dictshield/document.py -------------------------------------------------------------------------------- /dictshield/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exfm/dictshield/HEAD/dictshield/fields.py -------------------------------------------------------------------------------- /examples/creating_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exfm/dictshield/HEAD/examples/creating_objects.py -------------------------------------------------------------------------------- /examples/creating_objects_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exfm/dictshield/HEAD/examples/creating_objects_output.txt -------------------------------------------------------------------------------- /examples/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exfm/dictshield/HEAD/examples/validation.py -------------------------------------------------------------------------------- /examples/validation_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exfm/dictshield/HEAD/examples/validation_output.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exfm/dictshield/HEAD/setup.py --------------------------------------------------------------------------------