Skip to main content

Hybrid attributes

Project description

Travis CI Status Codecov Status Documentation

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hybrid-attributes-0.1.0.tar.gz (11.7 kB view details)

Uploaded Source

Built Distribution

hybrid_attributes-0.1.0-py2.py3-none-any.whl (5.0 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file hybrid-attributes-0.1.0.tar.gz.

File metadata

File hashes

Hashes for hybrid-attributes-0.1.0.tar.gz
Algorithm Hash digest
SHA256 225d359527abd504de2481e2326fb1b5dab8ac1a371488197efbc4c4c3516a9e
MD5 7b1bde0698b73699eb9c755dd03615fe
BLAKE2b-256 db405fdc85654f40abd47222129b84e987166d3c97ee39f24cbb379adc758b29

See more details on using hashes here.

File details

Details for the file hybrid_attributes-0.1.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for hybrid_attributes-0.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 86690cfbb9546fbd3a51268ee66ab1d7888d7d6db3c88bf6a5c5ebf3c71ddd49
MD5 0609d83fd184698921501a3c91bd0059
BLAKE2b-256 90388a08a1252eeb58a8d9b9d32a9ee6f4b22ac64dcf9613fa87547f5c338eb1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page