Dicts that can be accessed via attributes
- Print hello world on screen *
* feature in development.
- Python 3.8+
$ pip install dictdaora
print('Hello World!')
Hello World!
import json
print(json.dumps(dict(hello='Hello', world='World!')))
{"hello": "Hello", "world": "World!"}