No project description provided
Project description
indexed_meta
Python metaclass with support for per-class specialization via an index method.
Adds a __param__
field to classes programmatically so that you can store a
static field on them without having to define a new class and without having to
use a new name.
from indexed_meta import IndexedMetaclass # Base type but either will work fine
from indexed_meta import IndexedClass # Convenience type. Fixes repr(), str()
class Vec(IndexedClass):
def show(self):
# This is the value-add for this library. Use __param__ as you see fit.
# It is different per specialized class but the exact same when param is
# the same: Vec[1] == Vec[1]; Vec[1] != Vec[2]
print(self.__param__)
v1 = Vec[3]()
v1.show() # Prints `3`
Vec[1], Vec[2], Vec[3], Vec[1, 2, 3], Vec[frozenset([1, 2, 3])]
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
indexed_meta-0.0.1.tar.gz
(3.2 kB
view hashes)
Built Distribution
Close
Hashes for indexed_meta-0.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d130d8ddf09e0fb434ff4d567544d08d1fee8f3a3753f0489abc58ec0380850 |
|
MD5 | 17b316d89ae3d6f9c64f6f5448ac52c4 |
|
BLAKE2b-256 | 5a6c8c4cdd5e7b0c06e01bbd3310afb7e61426a4ef5795a65f02d8b67d09da2b |