Skip to main content

A library to call Python functions with parameters determined at runtime by name.

Project description

Overview

calllib provides 2 functions, apply and getargs. These functions are used to call Python functions whose parameters are not known in advance, but are determined at runtime from a mapping of available objects.

This is particularly useful in plug-in frameworks, where you don’t want every callback function to be required to have identical signatures. Instead, each function can take a subset of available parameters.

For example:

>>> from __future__ import print_function
>>> import calllib

>>> def callback1(time):
...    print('callback1 called at:', time)

>>> def callback2(time, reason):
...    print('callback2 called at:', time, 'reason:', reason)

# register the callbacks
>>> callbacks = [callback1, callback2]

# elsewhere: compute the total universe of possible
#  callback arguments
>>> args = {'time': 'noon', 'reason': 'abort'}
>>> for callback in callbacks:
...    calllib.apply(callback, args)  # execute each callback
callback1 called at: noon
callback2 called at: noon reason: abort

The last line shows that you can call any callback routine without knowing its exact arguments, as long as its arguments are a subset of the available arguments.

apply()

apply(callable, args)

  • callable - Any callable object that can be inspected with the inspect module.

  • args - A mapping object, typically a dict, that contains the available arguments that will be passed to callable.

callable is inpsected with getargs and the its parameters are extracted by name. For each parameter the corresponding value is retrieved from args by name and passed to the callable.

apply returns the result of executing callable with the computed arguments.

getargs()

getargs(callable, args)

  • callable - Any callable object that can be inspected with the inspect module.

  • args - A mapping object, typically a dict, that contains the available arguments that could be passed to callable.

callable is inspected to determine its parameters. For each parameter the corresponding value is retrieved from args. If a parameter is not found in args callable has a default value for that parameter, the default value is retrieved.

getargs returns a list of actual argument values that would be passed to callable.

Types of callables supported

calllib supports any callable written in Python. This includes functions, bound and unbound methods, classes, and object instances with __call__ members.

Because they are not introspectable by the inspect module, built in Python functions such as len cannot be used with apply.

Default arguments

Functions with default arguments are fully supported by calllib. If an argument is not specified in the args parameter to apply and it has a default, the default value will be used.

Change log

1.1 2014-02-12 Eric V. Smith

  • Produce an RPM named python-calllib (issue #3).

  • Support python3 (issue #2).

  • Moved tests to a separate module (issue #1).

1.0 2011-11-10 Eric V. Smith

  • Finalized API.

  • Added tests for derived classes.

0.2 2011-11-10 Eric V. Smith

  • Allow for classes with no __init__ method.

  • Normalize test names.

0.1 2011-11-09 Eric V. Smith

  • Initial release.

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

calllib-1.1.tar.gz (9.3 kB view details)

Uploaded Source

File details

Details for the file calllib-1.1.tar.gz.

File metadata

  • Download URL: calllib-1.1.tar.gz
  • Upload date:
  • Size: 9.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for calllib-1.1.tar.gz
Algorithm Hash digest
SHA256 4115d5ac1b00888f7ec6304fe036fd4d059be09bc4d39cdc3a740e11dda119bf
MD5 1bd6c97ed622033dd9948bec8982233a
BLAKE2b-256 a7d2af5b04cbe03f9faf7187d63e430051dc9969ccf7e251aa2628ec0e3574d5

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