Skip to main content

Bind functions to run only once inside a desired scope.

Project description

PyPI PyPI - Python Version GitHub https://travis-ci.org/jsfehler/stere.svg?branch=master

Bind functions to only run once inside a desired scope.

Documentation

The Rig class exposes two methods: bind and free. Bind takes one argument: A name for a scope to bind the function.

Functions wrapped with bind will be called only once until the scope it is inside is freed.

Functions wrapped with free will free all the bound functions in a specific scope after the function’s execution.

Example:

import shibari


rig = shibari.Rig('ebi')


@rig.bind('ebi')
def timestamp():
    return str(time.time())


@rig.free('ebi')
def finish():
    pass


>>> t = timestamp()
>>> t2 = timestamp()
>>> assert t == t2

>>> finish()

>>> t3 = timestamp()
>>> t4 == timestamp()
>>> assert t != t3
>>> assert t3 == t4

Functions that take arguments can be bound, but will always return the same result until they are freed.

Example:

import shibari


rig = shibari.Rig('ebi')


@rig.bind('ebi')
def timestamp(a, b):
    return f'{a}_{str(time.time())}_{b}'


>>> t = timestamp('goodbye', 'world')
>>> t2 = timestamp('hello', 'space')
>>> assert t == t2

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

shibari-0.0.2.tar.gz (2.4 kB view hashes)

Uploaded Source

Built Distribution

shibari-0.0.2-py3-none-any.whl (4.0 kB view hashes)

Uploaded Python 3

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