Metadata-Version: 2.1
Name: dictnodefinder
Version: 1.0.1.dev1
Summary: Dictnodefinder is a library that helps you to diff and patch dictionaries.
Home-page: https://github.com/vionemc/dictnodefinder
Author: Aminah Nuraini
Author-email: aminah.nuraini92@gmail.com
License: UNKNOWN
Project-URL: Changelog, https://github.com/vionemc/dictnodefinder/blob/master/CHANGES
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Utilities
Provides-Extra: all
Requires-Dist: Sphinx (>=1.4.4) ; extra == 'all'
Requires-Dist: sphinx-rtd-theme (>=0.1.9) ; extra == 'all'
Provides-Extra: docs
Requires-Dist: Sphinx (>=1.4.4) ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme (>=0.1.9) ; extra == 'docs'

================
 Dictnodefinder
================

About
=====

Dictnodefinder is a helper module that helps you to find keys in nested dictionary.


Installation
============

Dictnodefinder is on PyPI so all you need is: ::

    pip install dictnodefinder


Usage
============

	import dictnodefinder

	source = {'a':{'b':0}}

	key_to_find = 'b'

	print(dictnodefinder.findkeys(source, key_to_find))


