├── .gitignore ├── .gitpod.yml ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── artwork ├── tinymongo.png └── tinymongo.svg ├── demo.py ├── dev.py ├── setup.cfg ├── setup.py ├── tests ├── dataset_sample │ └── mixed_type.json └── test_tinymongo.py └── tinymongo ├── __init__.py ├── errors.py ├── results.py ├── serializers.py └── tinymongo.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- 1 | tasks: 2 | - init: pip install . 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/README.md -------------------------------------------------------------------------------- /artwork/tinymongo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/artwork/tinymongo.png -------------------------------------------------------------------------------- /artwork/tinymongo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/artwork/tinymongo.svg -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/demo.py -------------------------------------------------------------------------------- /dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/dev.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/setup.py -------------------------------------------------------------------------------- /tests/dataset_sample/mixed_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/tests/dataset_sample/mixed_type.json -------------------------------------------------------------------------------- /tests/test_tinymongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/tests/test_tinymongo.py -------------------------------------------------------------------------------- /tinymongo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/tinymongo/__init__.py -------------------------------------------------------------------------------- /tinymongo/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/tinymongo/errors.py -------------------------------------------------------------------------------- /tinymongo/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/tinymongo/results.py -------------------------------------------------------------------------------- /tinymongo/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/tinymongo/serializers.py -------------------------------------------------------------------------------- /tinymongo/tinymongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schapman1974/tinymongo/HEAD/tinymongo/tinymongo.py --------------------------------------------------------------------------------