Makes scripts feel like functions.
Project description
Callscript
Not worth it to refactor your script into a bunch of functions? This is a simple python library that lets you run your script as though you had, so you can
call results = callscript('myscript.py', x=3, y=4)
. Just add comments in your scirpt to show where the inputs and outputs are, and callscript
will
make the function work properly:
# myscript.py
x = 1 # input
y = 2 # input
w = x * y
v = x / y # output
z = x + y # output
print(z) # ignore
Why does this exist? Because sometimes you don't want to touch your old code or want to keep working with it using an interactive coding tool like Spyder, VSCode's interactive mode, or Jupyter, but you still want to be able to test your script using new parameters, or wrap it with a user interface.
Or maybe you're not sure how to go about changing the script's code to make it work in a new context and don't have a lot of time at the moment to work it out, or maybe you're collaborating with someone who isn't ready to refactor the script yet.
In any case, with callscript
, you can leave the original script alone and wrap it with your new functionality.
Installation
Install callscript
with PyPI
pip install callscript
Usage / Examples
Simple Input-Output Labeling
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}
Modifying Input-Output Variable Names for your Function's API
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
>>> callscript('examples/script2.py', FirstWeek=10, SecondWeek=20)
{'sum': 30}
Ignoring Lines When the Script is Called as a Function
Want some lines to be ignored when being called by callscript()
? Use the # ignore
tag!
# examples/script3.py
x = 3 # input
y = 5 # input
input('What is your name?') # ignore
z = x + y # output
z = 100000 # ignore
>>> callscript('examples/script3.py', x=10, y=20)
{'z': 30}
Using the Orignal Script Values as Function Defaults
callscript()
will automatically use the original values of the inputs in the script as defaults.
# examples/script4.py
name = 'Nick' # input
greeting = 'Hello, ' # input
msg = greeting + name # output
>>> callscript('examples/script4.py', name='Emma')
{'msg': 'Hello, Emma'}
Authors
Running Tests
To run tests, run the following command
tox
Contributing
Adding to the Changelog
Don't modify the CHANGELOG.rst
file directly! Instead, usescriv create
make a new entry for the changelog. After you've written a contribution, add the entry and write what you did into the template. When we are ready to make a release, we'll use the scriv collect
command to aggregate these fragments into a new changeelog entry.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file callscript-0.7.2.tar.gz
.
File metadata
- Download URL: callscript-0.7.2.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38fd4aff88121a902935b362d8680f985cce5a968f509b36b510232be8a81c99 |
|
MD5 | 81c37740eb317c421a9989e958974171 |
|
BLAKE2b-256 | b71808edabecb948f1c5fff294bc625932323893882ec8d4ed9a991131ba53b1 |
File details
Details for the file callscript-0.7.2-py3-none-any.whl
.
File metadata
- Download URL: callscript-0.7.2-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22e5e173d3fb067685dfd2fefbde6b6b7172f0a4daa3d44f7145ebf2c4c9922f |
|
MD5 | 6cfbb2fe33886c4a3cd118cf200e6339 |
|
BLAKE2b-256 | f63a38a7bc72ccc470ed997c5f7f28c7c9358288133a48210ab9dc3efc48dc8d |