Skip to main content

Easily strip decorator from function or class method

Project description

strip-deco

license pypi pyversions badge Downloads


strip-deco easily strip decorator from function or class method

Installation

pip3 install strip-deco

Example of function decorator

from strip_deco import stripdeco


def deco(func):
    def _deco(*args, **kwargs):
        result = func(*args, **kwargs)
        return result
    return _deco
    
@deco
def test():
    pass
    

stripdeco(obj=test)


@deco
@deco
@deco
def test():
    pass
    

stripdeco(obj=test)

Example of class decorator

from strip_deco import stripdeco


class Deco:
    def __call__(self, func):
        def deco(*args, **kwargs):
            return func(*args, **kwargs)
        return deco
       
 
@Deco()
def test():
    pass
    
    
stripdeco(obj=test)


@Deco()
@Deco()
@Deco()
def test():
    pass


stripdeco(obj=test, depth=2)

Example of class method

from strip_deco import stripdeco


def deco(func):
    def _deco(*args, **kwargs):
        result = func(*args, **kwargs)
        return result
    return _deco


class Service:
    @deco
    def run(self):
        pass
    
    @deco
    def run_with_arguments(self, user_id):
        pass


        
        
stripdeco(obj=Service().run)
stripdeco(obj=Service().run_with_arguments, user_id=1)  # Case of other arguments

Example of class method with init

from strip_deco import stripdeco


def deco(func):
    def _deco(*args, **kwargs):
        result = func(*args, **kwargs)
        return result
    return _deco


class Service:
    def __init__(self, repo):
        self.repo = repo

    @deco
    def run(self):
        pass
    
    @deco
    def run_with_arguments(self, user_id):
        pass


        
        
stripdeco(obj=Service(repo="repo").run)
stripdeco(obj=Service(repo="repo").run_with_arguments, user_id=1)  # Case of other arguments
  • strip-deco automatically removes any kind of decorators. (class/function)
  • It supports both decorator,functools wraps and non functools wraps .
  • If you specify depth paramater, it will strip order by outside.
  • The class argument is required when executing class method.

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

strip-deco-0.0.8.tar.gz (3.4 kB view details)

Uploaded Source

File details

Details for the file strip-deco-0.0.8.tar.gz.

File metadata

  • Download URL: strip-deco-0.0.8.tar.gz
  • Upload date:
  • Size: 3.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2

File hashes

Hashes for strip-deco-0.0.8.tar.gz
Algorithm Hash digest
SHA256 d37959037310f30b7dd7429d688bad34ec56d9b46dc5056dba86125f1a722620
MD5 9d7916b9bb7f887ca7308e7acba36454
BLAKE2b-256 e57a5d249dc3c522d9c09e91d8015584eb1d8e2fb9193bf91c5e61ed148eafd0

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