A lightweight Python class that behaves like a dict but supports attribute-style access.
Project description
Bunch
A simple Python class that allows dictionary-style and attribute-style access to data interchangeably. Think of it as a lightweight object wrapper for dictionaries — great for config objects, JSON responses, or anything else you'd normally throw in a dict.
Features
- Access keys as attributes or like a dictionary
- Convert from regular dictionaries
- Pretty-printed JSON representation
- Check if a value exists
- Fully compatible with
in,.keys(),.items(), etc.
Installation
You can install this package via PIP: pip install python-bunch
Usage
# - Mutable Bunch -
from bunch.bunch import Bunch
my_bunch = Bunch({'name': 'Jane', 'age': 30})
print(my_bunch.name) # Output: Jane
print(my_bunch['age']) # Output: 30
# - Immutable Bunch -v
from bunch.immutable_bunch import ImmutableBunch
my_immutable_bunch = ImmutableBunch({'name': 'John', 'age': 25})
print(my_immutable_bunch.name) # Output: John
print(my_immutable_bunch['age']) # Output: 35
# Attempting to modify an ImmutableBunch will raise an Exception
my_immutable_bunch.name = 'Alice' # Raises ImmutableBunchException
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file python_bunch-0.1.5.tar.gz.
File metadata
- Download URL: python_bunch-0.1.5.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cabde5204eff05a2f19ba25aef2e408d0895b27a8ce1417bf69dbd6af1050e13
|
|
| MD5 |
e29247c7253349dea0b448093919c485
|
|
| BLAKE2b-256 |
4dd157f7a94a3b5adcac1f26444d8a345a30560abcd74e04176298cf81c3771e
|
File details
Details for the file python_bunch-0.1.5-py3-none-any.whl.
File metadata
- Download URL: python_bunch-0.1.5-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a5eed4c82b71329ce85837d546fabfd2520ca65dd6f6250323ad8589d793fde
|
|
| MD5 |
8ae058f36fcc749232204d9cda33b0b8
|
|
| BLAKE2b-256 |
854fea88cad081ea2c50cede7b0a7283c64369b3bbcf9beaee422ba00f08af8f
|