Skip to main content

A tool to run a python function in a module from command line

Project description

Run a python function in a module from command line

Install

$ pip install pyfuncrun

Usage

$ pyfuncrun <path.to.func> <func arguments> <arguments for func to parse in sys.argv>

Example

func.py:

def print_sys_argv():
    print sys.argv


def func_with_args(a, b):
    print ((a + b), sys.argv)


def func_with_kwargs(a, b, c=1):
    print ((a + b + c), sys.argv)

Run:

$ pyfuncrun func.print_sys_argv 1 2
[1, 2]

$ pyfuncrun func.func_with_args 1 2
(3, [])

$ pyfuncrun func.func_with_kwargs 1 2 3 4
(6, [4])

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

pyfuncrun-0.1.3.tar.gz (1.8 kB view hashes)

Uploaded Source

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