No project description provided
Project description
attributes
a python version attribute like attribute of csharp.
Usage
from attributes import Attribute
class Data(Attribute): # make your own attribute
def __init__(self, *args, **kwargs):
self.args = args
self.kwargs = kwargs
@Data(1, 2) # use your attribute
class SomeClass:
pass
data, = Attribute.get_attrs(SomeClass) # than load on runtime and use it.
Parameter Attribute
@param_attr('a', Data(1, 2), Data(3, 4))
def func(a):
pass
data, = Attribute.get_attrs(param_of(func, 'a'))
# or
data, = Data.get_from_param(func, 'a')
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
attributes-0.1.1.tar.gz
(3.6 kB
view hashes)
Built Distribution
Close
Hashes for attributes-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 385e7857d3d6486255d5976821525aad25ff8d0211be31acc1ec0d520cbc8874 |
|
MD5 | d1442db49414a330428a3063ca296746 |
|
BLAKE2b-256 | 6dd8908709600972cd4cb7fb35fbcf4731d609196755d33bb12d62ed8fc60cc3 |