python-bunch 0.1.2__py3-none-any.whl → 0.1.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_bunch-0.1.2.dist-info → python_bunch-0.1.3.dist-info}/METADATA +3 -3
- python_bunch-0.1.3.dist-info/RECORD +8 -0
- python_bunch-0.1.2.dist-info/RECORD +0 -8
- {python_bunch-0.1.2.dist-info → python_bunch-0.1.3.dist-info}/WHEEL +0 -0
- {python_bunch-0.1.2.dist-info → python_bunch-0.1.3.dist-info}/licenses/LICENSE +0 -0
- {python_bunch-0.1.2.dist-info → python_bunch-0.1.3.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: python-bunch
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.3
|
4
4
|
Summary: A lightweight Python class that behaves like a dict but supports attribute-style access.
|
5
5
|
Author-email: Omer Menashe <unspecified@mail.com>
|
6
6
|
License: MIT
|
@@ -27,7 +27,7 @@ A simple Python class that allows dictionary-style and attribute-style access to
|
|
27
27
|
|
28
28
|
### <ins> Installation </ins>
|
29
29
|
|
30
|
-
You can install this package via PIP: _pip install bunch_
|
30
|
+
You can install this package via PIP: _pip install python-bunch_
|
31
31
|
|
32
32
|
### <ins> Usage </ins>
|
33
33
|
|
@@ -40,7 +40,7 @@ my_bunch = Bunch({'name': 'Jane', 'age': 30})
|
|
40
40
|
print(my_bunch.name) # Output: Jane
|
41
41
|
print(my_bunch['age']) # Output: 30
|
42
42
|
|
43
|
-
# - Immutable Bunch -
|
43
|
+
# - Immutable Bunch -v
|
44
44
|
from bunch.immutable_bunch import ImmutableBunch
|
45
45
|
|
46
46
|
my_immutable_bunch = ImmutableBunch({'name': 'John', 'age': 25})
|
@@ -0,0 +1,8 @@
|
|
1
|
+
bunch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
bunch/bunch.py,sha256=KThKq7aLFbig8EVnbXzZKcCaD4AVRFCF9XJUquWV5rw,1875
|
3
|
+
bunch/immutable_bunch.py,sha256=5tCZeMRSOAAv5bWhNKUKEWV8DE0LMTxS4OF1KmlbOCw,2447
|
4
|
+
python_bunch-0.1.3.dist-info/licenses/LICENSE,sha256=Hsoz6W43KBiNLAODKAcjo2witGQKjZ05gVU_mUD4eHs,1039
|
5
|
+
python_bunch-0.1.3.dist-info/METADATA,sha256=Fmh6chlN2hZPL7VnhHw341VjmaDMe_oMxcAUAENoV3E,1713
|
6
|
+
python_bunch-0.1.3.dist-info/WHEEL,sha256=GHB6lJx2juba1wDgXDNlMTyM13ckjBMKf-OnwgKOCtA,91
|
7
|
+
python_bunch-0.1.3.dist-info/top_level.txt,sha256=A1w3sDjR8t1mZ4GDuhD9afxgybqy6nHJHPA4CbrgFRA,6
|
8
|
+
python_bunch-0.1.3.dist-info/RECORD,,
|
@@ -1,8 +0,0 @@
|
|
1
|
-
bunch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
bunch/bunch.py,sha256=KThKq7aLFbig8EVnbXzZKcCaD4AVRFCF9XJUquWV5rw,1875
|
3
|
-
bunch/immutable_bunch.py,sha256=5tCZeMRSOAAv5bWhNKUKEWV8DE0LMTxS4OF1KmlbOCw,2447
|
4
|
-
python_bunch-0.1.2.dist-info/licenses/LICENSE,sha256=Hsoz6W43KBiNLAODKAcjo2witGQKjZ05gVU_mUD4eHs,1039
|
5
|
-
python_bunch-0.1.2.dist-info/METADATA,sha256=LWNCMkLto0GmikuQ07VlTUM1iMISc16j0rkpJlT1kZQ,1705
|
6
|
-
python_bunch-0.1.2.dist-info/WHEEL,sha256=GHB6lJx2juba1wDgXDNlMTyM13ckjBMKf-OnwgKOCtA,91
|
7
|
-
python_bunch-0.1.2.dist-info/top_level.txt,sha256=A1w3sDjR8t1mZ4GDuhD9afxgybqy6nHJHPA4CbrgFRA,6
|
8
|
-
python_bunch-0.1.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|