Skip to main content

Advanced descriptors for special cases.

Project description

Advanced descriptors

https://travis-ci.org/python-useful-helpers/advanced-descriptors.svg?branch=master Azure DevOps builds https://coveralls.io/repos/github/python-useful-helpers/advanced-descriptors/badge.svg?branch=master Documentation Status https://img.shields.io/pypi/v/advanced-descriptors.svg https://img.shields.io/pypi/pyversions/advanced-descriptors.svg https://img.shields.io/pypi/status/advanced-descriptors.svg https://img.shields.io/github/license/python-useful-helpers/advanced-descriptors.svg https://img.shields.io/badge/code%20style-black-000000.svg

This package includes helpers for special cases:

  • SeparateClassMethod - allow to have classmethod and normal method both with the same name.

  • AdvancedProperty - property with possibility to set class wide getter.

  • LogOnAccess - property with logging on successful get/set/delete or failure.

SeparateClassMethod

This descriptor can be set using standard decorator syntax. Create instance with arguments:

def imeth(instance):
    return instance.value

def cmeth(owner):
    return owner.value

class Target(object):
    value = 1

    def __init__(self):
        self.value = 2
    getval = advanced_descriptors.SeparateClassMethod(
        imeth, cmeth
    )

Create instance wrapping as decorator:

class Target(object):
    value = 1

    def __init__(self):
        self.value = 2

    @advanced_descriptors.SeparateClassMethod
    def getval(self):
        return self.value

    @getval.class_method
    def getval(cls):
        return cls.value

Cases with method only and classmethod only is useless: method as-is and @classmethod should be used in corresponding cases.

AdvancedProperty

This descriptor should be used in cases, when in addition to normal property API, class getter is required. If class-wide setter and deleter also required - you should use standard propery in metaclass.

Usage examples:

  1. In addition to normal property API:

class Target(object):
    _value = 777

    def __init__(self):
        self._value = 42

    @advanced_descriptors.AdvancedProperty
    def val(self):
        return self._value

    @val.setter
    def val(self, value):
        self._value = value

    @val.deleter
    def val(self):
        self._value = 0

    @val.cgetter
    def val(cls):
        return cls._value
  1. Use class-wide getter for instance too:

class Target(object):
    _value = 1

    val = advanced_descriptors.AdvancedProperty()

    @val.cgetter
        def val(cls):
            return cls._value

LogOnAccess

This special case of property is useful in cases, where a lot of properties should be logged by similar way without writing a lot of code.

Basic API is conform with property, but in addition it is possible to customize logger, log levels and log conditions.

Usage examples:

  1. Simple usage. All by default, logger is re-used from instance if available with names logger or log else used internal advanced_descriptors.log_on_access logger:

import logging

class Target(object):

    def init(self, val='ok')
        self.val = val
        self.logger = logging.get_logger(self.__class__.__name__)  # Single for class, follow subclassing

    def __repr__(self):
        return "{cls}(val={self.val})".format(cls=self.__class__.__name__, self=self)

    @advanced_descriptors.LogOnAccess
    def ok(self):
        return self.val

    @ok.setter
    def ok(self, val):
        self.val = val

    @ok.deleter
    def ok(self):
        self.val = ""
  1. Use with global logger for class:

class Target(object):

  def init(self, val='ok')
      self.val = val

  def __repr__(self):
      return "{cls}(val={self.val})".format(cls=self.__class__.__name__, self=self)

  @advanced_descriptors.LogOnAccess
  def ok(self):
      return self.val

  @ok.setter
  def ok(self, val):
      self.val = val

  @ok.deleter
  def ok(self):
      self.val = ""

  ok.logger = 'test_logger'
  ok.log_level = logging.INFO
  ok.exc_level = logging.ERROR
  ok.log_object_repr = True  # As by default
  ok.log_success = True  # As by default
  ok.log_failure = True  # As by default
  ok.log_traceback = True  # As by default
  ok.override_name = None  # As by default: use original name

Testing

The main test mechanism for the package advanced-descriptors is using tox. Available environments can be collected via tox -l

CI systems

For code checking several CI systems is used in parallel:

  1. Travis CI: is used for checking: PEP8, pylint, bandit, installation possibility and unit tests. Also it’s publishes coverage on coveralls.

  2. coveralls: is used for coverage display.

  3. Azure CI: is used for functional tests on Windows.

CD system

Travis CI: is used for package delivery on PyPI.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

Advanced_Descriptors-2.2.2-py3-none-any.whl (11.5 kB view details)

Uploaded Python 3

Advanced_Descriptors-2.2.2-cp37-cp37m-win_amd64.whl (121.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

Advanced_Descriptors-2.2.2-cp36-cp36m-win_amd64.whl (120.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

Advanced_Descriptors-2.2.2-cp35-cp35m-win_amd64.whl (111.9 kB view details)

Uploaded CPython 3.5m Windows x86-64

File details

Details for the file Advanced_Descriptors-2.2.2-py3-none-any.whl.

File metadata

  • Download URL: Advanced_Descriptors-2.2.2-py3-none-any.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.4.4

File hashes

Hashes for Advanced_Descriptors-2.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 52985182942857dcd147b114d484b99b586899bf02ed6493ffd744a2b76fe502
MD5 ffea0a540f78759588c61aec0b4ff9d4
BLAKE2b-256 71eb50c3de5eddf195f0fe7406d6a84fa0414b985a7f44ec5b5acd988eca66a8

See more details on using hashes here.

File details

Details for the file Advanced_Descriptors-2.2.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: Advanced_Descriptors-2.2.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 121.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0

File hashes

Hashes for Advanced_Descriptors-2.2.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 99a60341f2a6500bde1594ae0fff8b1051fcc798cd2ba16d274726c05dbf3898
MD5 e3011409747090bbf04256dc252c2eec
BLAKE2b-256 a17a7849eec31db5c1f3b22f6e4ebfa336c5a605f5166a6645d9cc63a346d701

See more details on using hashes here.

File details

Details for the file Advanced_Descriptors-2.2.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: Advanced_Descriptors-2.2.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 120.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.4

File hashes

Hashes for Advanced_Descriptors-2.2.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d0ec553941163966234a81a679146223901c29b316a150d498b91d23d3884a9b
MD5 1d6914089839f62dff5163bbbd9251ce
BLAKE2b-256 d43051a285db12bff239bf04b23be7aab1e99a66b87f8cc6a5cdd12cc12c92db

See more details on using hashes here.

File details

Details for the file Advanced_Descriptors-2.2.2-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: Advanced_Descriptors-2.2.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 111.9 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.5.4

File hashes

Hashes for Advanced_Descriptors-2.2.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 163467976c239f494e0779db3debaf5fc45db0199f3efc615bced052de8c47aa
MD5 e728d2cbdf1e0587429b1e76442cca41
BLAKE2b-256 130ef13930d29cea0f6ef8e291486e1d5bf903fcdfaed8b77959af6ff2feef65

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