- `__name__` will now be `'__main__'`, just like how it is when running any other file directly - Passing additional arguments to `zxpy` command is now supported
1.4.0
Anything passed as an f-string into a bash string will be automatically quoted with `shlex.quote`.
i.e., `~f'{xyz}'` is the same as `~f'{shlex.quote(xyz)}`
1.3.0
- Alternate method of invoking shell commands: `stdout, stderr, return_code = ~'...'`. Fixes 6 - Add a few tests.
1.2.5
- Removes zxpy executable from sys.argv, to mimic default python behaviour (10)