Skip to main content

Generically execute any function with a unknown set of parameters.

Project description

gexecute

A tool to generically execute any function with a unknown set of parameters!

Specify some set of parameters in a dictionary with the only restriction being that it must have all of the parameters with non-default values.

The function can either be a string representation or a function object.

If the function exists in another module; you must give either the module object or the package path and module name.

Example:

def test(a, b, c='test'):
    print(a, b, c)

> test(1, 2, 3)
1, 2, 3

> gexec({'a': 1, 'b': 2, 'c': 3}, test)
1, 2, 3

> gexec({'a': 1, 'b': 2}, test)
1, 2, test

# Function name can be an object or string
> gexec({'a': 1, 'b': 2}, 'test')
1, 2, test

> gexec({'a': 1, 'b': 2, 'd': 4}, test)
1, 2, test

# If test is in the directory C:\python\test_module.py
> gexec({'a': 1, 'b': 2, 'c': 3}, 'test', module='test_module', package_path='C:\python\')
1, 2, 3

PiPy https://pypi.org/project/generic-execute/0.0.1/

How to Install: pip install gexecute

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

gexecute-0.0.1.tar.gz (6.9 kB view hashes)

Uploaded Source

Built Distributions

gexecute-0.0.1-py3.7.egg (5.2 kB view hashes)

Uploaded Source

gexecute-0.0.1-py3-none-any.whl (7.2 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