Hybrid attributes
Project description
Hybrid-Attributes implements a hybrid_property and hybrid_method descriptor, which call the underlying function both in a class and instance context.
Assume you have a class like:
class Foo: @classmethod def spam(self): return 'spam' @property def eggs(self): return 'eggs' def ham(self): return 'ham'
You can get the values returned by calling .spam() on the class, accessing ‘.eggs’ or calling .ham() on an instance:
>>> Foo.spam() 'spam' >>> foo = Foo() >>> foo.eggs 'eggs' >>> foo.ham() 'ham'
If you access these in a different context, .spam() will still be called with the class as first argument, .eggs will return a property object only useful for introspection and .ham() will raise an exception because there is no instance for it to be called with.
Hybrid-Attributes are different. They don’t care about the object are accessed through, the underlying function will always be called with whatever object it’s being accessed on. As an example, take this class:
class HybridFoo: @hybrid_property def spam(self): return 'spam' @hybrid_method def eggs(self): return 'eggs'
You can access the property and call the method on the class or on an instance:
>>> Foo.spam 'spam' >>> Foo.eggs() 'eggs' >>> foo = Foo() >>> foo.spam 'spam' >>> foo.eggs
Hybrid-Attributes is BSD licensed and available for Python 3.4 and later.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file hybrid-attributes-0.1.0.tar.gz
.
File metadata
- Download URL: hybrid-attributes-0.1.0.tar.gz
- Upload date:
- Size: 11.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 225d359527abd504de2481e2326fb1b5dab8ac1a371488197efbc4c4c3516a9e |
|
MD5 | 7b1bde0698b73699eb9c755dd03615fe |
|
BLAKE2b-256 | db405fdc85654f40abd47222129b84e987166d3c97ee39f24cbb379adc758b29 |
File details
Details for the file hybrid_attributes-0.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: hybrid_attributes-0.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86690cfbb9546fbd3a51268ee66ab1d7888d7d6db3c88bf6a5c5ebf3c71ddd49 |
|
MD5 | 0609d83fd184698921501a3c91bd0059 |
|
BLAKE2b-256 | 90388a08a1252eeb58a8d9b9d32a9ee6f4b22ac64dcf9613fa87547f5c338eb1 |