Releases: valdergallo/pyconst
Releases · valdergallo/pyconst
2.0.0
1.0.7
- bugfix copy.deepcopy raise error (new() takes exactly 3 arguments (2 given))
1.0.6
- bugfix
1.0.5
- add tuple with 3 values
>>> from pyconst import Const
>>> const = Const(('My Label Name', 'my_attribute_name', 'my_attribute_value'))
1.0.4
- control the values that you wanna put in (label, attribute and value)
>>> c = Cont()
>>> c.add(label='First Item',attr="my_attr", value=1)
>>> c.my_attr
'1'
1.0.2
- add support to use number as attribute
Ex.:
>>> c = Cont()
>>> c.add('First Item', 1)
>>> c._1
'1'
1.0.0
- nice 🍺