Skip to main content

Python Dictionary to Dot notation (class) package

Project description

python-dict2dot

Python Dictionary to Dot notation published in GitHub and PyPi.

This implementation admits dot notation to access nested dictionaries, once the parent is dict.

To pip install, run:

$ pip install dict2dot

 
 

The main class

With the python console and the dict2doc package, we can get things running:

$ python

>>>
from dict2dot import Dict2Dot

my_d2dot = Dict2Dot({'dogs': {'breeds': ['Golden']}, 'birds': {'breeds': ['Cockatiel']}})
my_d2dot.dogs.breeds.append('Lhasa Apso')
print( my_d2dot.dogs )

my_dict = my_d2dot.dict()
print( my_dict )

other_dot2dict = Dict2Dot()
other_dot2dict.a_new_key = 'a new value'
print( other_dot2dict.a_new_key )

Documentation

Please try from python console:

$ python
>>> from dict2dot import Dict2Dot
>>> help(Dict2Dot)

Or try from command line:

$ python -c "import dict2dot; print(dict2dot.__doc__)"

All documentation can be found in docs.

To do

  • Remove elements from class.
  • Improve documentation.

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

dict2dot-0.1-py3-none-any.whl (3.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page