Skip to main content

No project description provided

Project description

autoprop — Infer properties from accessor methods

https://img.shields.io/pypi/v/autoprop.svg https://img.shields.io/pypi/pyversions/autoprop.svg https://img.shields.io/travis/kalekundert/autoprop.svg https://img.shields.io/coveralls/kalekundert/autoprop.svg

Properties are a feature in python that allow accessor functions (i.e. getters and setters) to masquerade as regular attributes. This makes it possible to provide transparent APIs for classes that need to cache results, lazily load data, maintain invariants, or react in any other way to attribute access.

Unfortunately, making a property requires an annoying amount of boilerplate code. There are a few ways to do it, but the most common and most succinct requires you to decorate two functions (with two different decorators) and to type the name of the attribute three times:

class RegularProperty:

    @property
    def attr(self):
        return self._attr

    @attr.setter
    def attr(self, new_value):
        self._attr = new_value

The autoprop module simplifies this process by searching your class for accessor methods and adding properties corresponding to any such methods it finds. For example, the code below defines the same property as the code above:

@autoprop
class AutoProperty:

    def get_attr(self):
        return self._attr

    def set_attr(self, new_value):
        self._attr = new_value

Installation

autoprop is available on PyPI, so you can install it using pip:

pip install autoprop

Usage

To use autoprop, import the autoprop module and use it directly as a class decorator:

import autoprop

@autoprop
class Vector2D:

    def __init__(self, x, y):
        self._x = x
        self._y = y

    def get_x(self):
        return self._x

    def set_x(self, x):
        self._x = x

    def get_y(self):
        return self._y

    def set_y(self, y):
        self._y = y

The decorator searches your class for methods beginning with get_, set_, or del_ and uses them to create properties. The names of the properties are taken from whatever comes after the underscore. For example, the method get_x would be used to make a property called x. Any combination of getter, setter, and deleter methods is allowed for each property.

If you have properties that are expensive to calculate, you can indicate that they should be cached:

@autoprop
class Vector2D:

    ...

    @autoprop.cache
    def get_magnitude(self):
        return math.sqrt(self._x**2 + self._y**2)

Cached properties will only be calculated when they are accessed either for the first time ever, or for the first time after calls to the corresponding setter or deleter (if any are defined).

Details

Besides having the right prefix, there are two other criteria methods must meet in order to be made into properties. The first is that they must take the right number of required arguments. Getters and deleters can’t have any required arguments (other than self). Setters must have exactly one required argument (other than self), which is the value to set. Default, variable, and keyword arguments are all ok; only the number of required arguments matters.

Any methods that have the right name but the wrong arguments are silently ignored. This can be nice for getters that require, for example, an index. Even though such a getter can’t be made into a property, autoprop allows it to follow the same naming conventions as any getters that can be:

@autoprop
class Vector2D:

    ...

    def get_coord(self, i):
        if i == 0: return self._x
        if i == 1: return self._y

    def set_coord(self, i, new_coord):
        if i == 0: self.x = new_coord
        if i == 1: self.y = new_coord

In this way, users of your class can always expect to find accessors named get_* and set_*, and properties corresponding to those accessors for basic attributes that don’t need any extra information.

The second criterion is that the property must have a name which is not already in use. This guarantees that nothing you explicitly add to your class will be overwritten, and it gives you the ability to customize how certain properties are defined if you’d so like. Note that this criterion does not apply to properties that autoprop itself created. This really just means that if you overwrite some accessors defined in a superclass, you’ll get new properties that refer to the overridden accessors and not be left with stale references to the superclass accessors.

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

autoprop-1.0.1.tar.gz (14.7 kB view details)

Uploaded Source

Built Distribution

autoprop-1.0.1-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

File details

Details for the file autoprop-1.0.1.tar.gz.

File metadata

  • Download URL: autoprop-1.0.1.tar.gz
  • Upload date:
  • Size: 14.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.1 CPython/3.8.0

File hashes

Hashes for autoprop-1.0.1.tar.gz
Algorithm Hash digest
SHA256 012b74405dc02c7527366d351bb85397b8964446b601c956594e4eae405837da
MD5 477d31f19359b8e79db459d8a19ab87d
BLAKE2b-256 3d060e6db76b2880d4e4a7b78df1e5c16b4d0450cf3f57936583f0f107bdf000

See more details on using hashes here.

File details

Details for the file autoprop-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: autoprop-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 6.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for autoprop-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 dab71d016ef4fd81cdc4c27c2feac390f9a4491c843cd8f3a46575ad6ecf51f9
MD5 51a54780559dbf389e8d611f2241e67a
BLAKE2b-256 f2731805bca4903445b3c7dddfbab74de63be718abf1b46753bc1b997cf0e97d

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