Launch Week Day 5: Introducing Reachability for PHP.Learn More
Socket
Book a DemoSign in
Socket

attr-dot-dict

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

attr-dot-dict

A simple class that allows for the chaining of attributes.

pipPyPI
Version
0.1.0
Maintainers
1

DotDict

A simple Python library that builds upon argparse.Namespace to make chained attributes possible.

Why?

Configs of all kinds follow a dict-like structure. However, nobody likes the dict["key"] syntax. We all much prefer the dict.key syntax.

There are a number of workarounds for this, including easydict or argparse.Namespace (upon which this library is based).

The downside of these libraries, though, is that when you want to start a new level, you must explicitly define it first. For example:

config = edict()

config.host = 'localhost'

config.users = edict() # or {}
config.users.foo = 'bar'

This is ugly.

Wouldn't you much prefer the following syntax?

config = dd()

config.host = 'localhost'
config.users.foo = 'bar'

Installation

Installation is simple: pip install attr-dot-dict. Alternatively: pip install . from the root of the repository.

Usage

Usage is equally as simple:

from dotdict import DotDict as dd

x = dd()

x.a.b.c = 1
x.a.d = 2
x.a.b.e = 3

print(x) # DotDict(a=DotDict(b=DotDict(c=1, e=3), d=2))
print(vars(x)) # {'a': DotDict(b=DotDict(c=1, e=3), d=2)}
print(vars(x.a)) # {'b': DotDict(c=1, e=3), 'd': 2}

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts