In Lianja 4.1.2 this now all works as expected.
lianja --file c:\lianja\apps\matchbackmain\generate_file.py --args "'D:\\buffys2ep20\\test36\\jpg\'"
or
lianjaruntime --file c:\lianja\apps\matchbackmain\generate_file.py --args "'D:\\buffys2ep20\\test36\\jpg\'"
Here is an example:
lianja --file barry.py --args "'hello\sthere',1234,'bye'"
and the file barry.py:
Code:
if __name__ == "__main__":
print sys.argv
The output is:
['barry.py', 'hello there', 1234, 'bye']
Note that spaces in the --args list need to be escaped as \s or
Bookmarks