├── .gitignore ├── .travis.yml ├── CHANGES.txt ├── LICENSE ├── MANIFEST ├── MANIFEST.in ├── README.rst ├── dotted ├── __init__.py ├── collection.py ├── test │ ├── __init__.py │ └── test_collection.py └── utils.py ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosescri/DottedDict/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosescri/DottedDict/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosescri/DottedDict/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosescri/DottedDict/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosescri/DottedDict/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosescri/DottedDict/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosescri/DottedDict/HEAD/README.rst -------------------------------------------------------------------------------- /dotted/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dotted/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosescri/DottedDict/HEAD/dotted/collection.py -------------------------------------------------------------------------------- /dotted/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dotted/test/test_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosescri/DottedDict/HEAD/dotted/test/test_collection.py -------------------------------------------------------------------------------- /dotted/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosescri/DottedDict/HEAD/dotted/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosescri/DottedDict/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosescri/DottedDict/HEAD/tox.ini --------------------------------------------------------------------------------