python-bunch 0.1.2__tar.gz → 0.1.3__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-bunch
3
- Version: 0.1.2
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})
@@ -12,7 +12,7 @@ A simple Python class that allows dictionary-style and attribute-style access to
12
12
 
13
13
  ### <ins> Installation </ins>
14
14
 
15
- You can install this package via PIP: _pip install bunch_
15
+ You can install this package via PIP: _pip install python-bunch_
16
16
 
17
17
  ### <ins> Usage </ins>
18
18
 
@@ -25,7 +25,7 @@ my_bunch = Bunch({'name': 'Jane', 'age': 30})
25
25
  print(my_bunch.name) # Output: Jane
26
26
  print(my_bunch['age']) # Output: 30
27
27
 
28
- # - Immutable Bunch -
28
+ # - Immutable Bunch -v
29
29
  from bunch.immutable_bunch import ImmutableBunch
30
30
 
31
31
  my_immutable_bunch = ImmutableBunch({'name': 'John', 'age': 25})
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "python-bunch"
7
- version = "0.1.2"
7
+ version = "0.1.3"
8
8
  description = "A lightweight Python class that behaves like a dict but supports attribute-style access."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.7"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-bunch
3
- Version: 0.1.2
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})
File without changes
File without changes