12 lines
195 B
Python
12 lines
195 B
Python
|
"""Dot notation and access for dictionaries in python"""
|
||
|
from .diot import (
|
||
|
Diot,
|
||
|
CamelDiot,
|
||
|
SnakeDiot,
|
||
|
FrozenDiot,
|
||
|
OrderedDiot,
|
||
|
DiotFrozenError
|
||
|
)
|
||
|
|
||
|
__version__ = "0.1.6"
|