Skip to main content

a function decorator for surfacing dead code

Project description

sanka

a function decorator for surfacing dead code

tests publish codecov

Setup

Ensure nox is installed.

pip install nox

Run nox to install sanka and run tests.

Usage

the basics

Decorate any funciton with @sanka.

@sanka
def function():
    pass

The decorator instance tracks function calls so the call count can be gotten as follows:

function(YaDead)  #=> returns number of times `function` was called

callbacks

One can also pass a callback argument to the @sanka decorator:

from string import Template

report = Template('Called $f called $this_many times')

callback: Callable[[int], None] = lambda tally: print(
    "Ya, mon."
    if tally == 0
    else report.substitute(f=str(function), this_many=tally)
)

@sanka(callback=callback)
def function():
    pass

The callback is expected to be a single-parameter function that accepts an int. This int is the latest tally for the number of times the decorated function has been called. To access the call count for the docorated function, just ask @sanka if it's "dead":

function(YaDead)

and as per the example you'd get this response if the function had never been called:

Ya, mon.

callback control

By default, callbacks are only executed when YaDead is passed. The callback can be executed on every function call if desired.

@sanka(callback=callback, only_callback_when_dead=False)
def function():
    pass

Now, every time function is called, the callback will also be called.

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

sanka-0.1.1.tar.gz (5.9 kB view details)

Uploaded Source

File details

Details for the file sanka-0.1.1.tar.gz.

File metadata

  • Download URL: sanka-0.1.1.tar.gz
  • Upload date:
  • Size: 5.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for sanka-0.1.1.tar.gz
Algorithm Hash digest
SHA256 bad3b5d68ee89dc15e5626dde5a650215441c98baece3cc26d5fcc46f188aff3
MD5 104688d5ca8cf9028ac903d2f38f6dea
BLAKE2b-256 687fa8ed34dba5f5f7d9824c7c0277c385748c8b048ca059b069f46ede539a92

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