Skip to main content

Makes scripts feel like functions.

Project description

callscript

Want to add a GUI, CLI, or simply test your script, but you don't want to modify your code? Call a script as though it were a function!

Usage:

If you label your script with the "input" or "output" comments, callscript can call it!

# examples/script.py
x = 3  # input
y = 5  # input
z = x + y  # output

Then from your other code, you can call it with the callscript() function:

>>> from callscript import callscript
>>> callscript('examples/script.py', x=10, y=20)
{'z': 30}

Want to change your variable names? You can do that, too!

# examples/script2.py
x = 3  # input:FirstWeek
y = 5  # input:SecondWeek
z = x + y  # output:sum
>>> from callscript import callscript
>>> callscript('examples/script2.py', FirstWeek=10, SecondWeek=20)
{'sum': 30}

Installation

pip install callscript

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

callscript-0.2.tar.gz (5.6 kB view hashes)

Uploaded Source

Built Distribution

callscript-0.2-py3-none-any.whl (4.4 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