Advanced Python dictionaries with dot notation access
Project description
from box import Box
movie_box = Box({ "Robin Hood: Men in Tights": { "imdb stars": 6.7, "length": 104 } })
movie_box.Robin_Hood_Men_in_Tights.imdb_stars
# 6.7
Box will automatically make otherwise inaccessible keys safe to access as an attribute. You can always pass conversion_box=False to Box to disable that behavior.
Also, all new dict and lists added to a Box or BoxList object are converted automatically.
Check out the new wiki!
Install
pip install --upgrade python-box[all]
Box 5 is no longer forcing install of external dependencies such as yaml and toml. Instead you can specify which you want, for example, all is shorthand for:
pip install --upgrade [ruamel.yaml,toml,msgpack]
But you can also sub out “ruamel.yaml” for “PyYAML”.
Check out more details on installation details.
Box 5 is tested on python 3.6+ and pypy3, if you are upgrading from previous versions, please look through any breaking changes and new features.
If you have any issues please open a github issue with the error you are experiencing!
Overview
Box is designed to be an easy drop in transparently replacements for dictionaries, thanks to Python’s duck typing capabilities, which adds dot notation access. Any sub dictionaries or ones set after initiation will be automatically converted to a Box object. You can always run .to_dict() on it to return the object and all sub objects back into a regular dictionary.
Check out the Quick Start for more in depth details.
Box can be instantiated the same ways as dict.
Box({'data': 2, 'count': 5})
Box(data=2, count=5)
Box({'data': 2, 'count': 1}, count=5)
Box([('data', 2), ('count', 5)])
# All will create
# <Box: {'data': 2, 'count': 5}>
Box is a subclass of dict which overrides some base functionality to make sure everything stored in the dict can be accessed as an attribute or key value.
small_box = Box({'data': 2, 'count': 5})
small_box.data == small_box['data'] == getattr(small_box, 'data')
All dicts (and lists) added to a Box will be converted on lookup to a Box (or BoxList), allowing for recursive dot notation access.
Box also includes helper functions to transform it back into a dict, as well as into JSON, YAML, TOML, or msgpack strings or files.
Thanks
A huge thank you to everyone that has given features and feedback over the years to Box! Check out everyone that has contributed.
A big thanks to Python Software Foundation, and PSF-Trademarks Committee, for official approval to use the Python logo on the Box logo!
Also special shout-out to PythonBytes, who featured Box on their podcast.
License
MIT License, Copyright (c) 2017-2020 Chris Griffith. See LICENSE file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file python-box-5.0.0a3.tar.gz
.
File metadata
- Download URL: python-box-5.0.0a3.tar.gz
- Upload date:
- Size: 33.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 956196ea674c26b076d85abc6e2a35517d0ef5e6b421788777fc57110ad2bb3e |
|
MD5 | c88a709f8c7da99b75c1637ba4a0fe44 |
|
BLAKE2b-256 | 1db693f0345beb099ed9f636735b497b1671513f3157044343eb643d4abce000 |
File details
Details for the file python_box-5.0.0a3-py3-none-any.whl
.
File metadata
- Download URL: python_box-5.0.0a3-py3-none-any.whl
- Upload date:
- Size: 20.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67b92710e4479f17d2473fc80e838083851cde1e0fc3d2d55720a14cfe013db8 |
|
MD5 | 31be511f1e475d1cdfd0c1ce22b98737 |
|
BLAKE2b-256 | 9c6a1b7fab704e8cd8356e0b764040667cd30d8f98b9b11428a4c8b329092d38 |