Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 343 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 343 Bytes

Asyncy Python

Execute a python file with arguments.

Example

import sys
print('Hello {} {}'.format(sys.argv[1], sys.argv[2]))

The file above is checked into your repository at the path /print.py

# Storyscript
result = python `print.py` "foo" "bar"

The variable result would equal "Hello foobar"