shell command invocation with backquotes, like Perl, Ruby.
Project description
Introduction
backquotes brings (Perl / Ruby)’s shell invocation syntax to Python.
Since backquotes is an experimental module, using it in a serious program is not recommended.
Syntax
Firstly, do not forget to import backquotes module.
import backquotes
Basic
You can use similar syntax to Perl / Ruby.
import backquotes
print(`date`)
Pipes and redirections
Yes, you can use pipes, redirections too.
import backquotes
print(`ls | tr [a-z] [A-Z]`.splitlines())
Local variables substitution
To bring local variables in Python code to shell command, use Perl-like variables substitution.
import backquotes
spam = 'spam'
print(`echo $spam`)
$$ is replaced with a literal $.
import backquotes
print(`echo $$PATH`)
Usage
Runtime-preprocessing
You can use runtime-preprocessing only in Python 2. This works transparently whenever you import backquotes.
#!/usr/bin/env python
import backquotes
print(`date`)
Save the above code as date.py, and run it as usual.
python date.py
You will see the result of date command.
Runtime-preprocessing sometimes causes SyntaxError before preprocessing starts, especially with complex commands invocation. You can avoid this error by using single-quotes just inside the backquotes.
print(`'for file in *; do echo $file; done'`)
Execute backquotes module
Run python with -m backquotes option to invoke backquotes as a script. backquotes compiles a plain Python code and execute it.
python -m backquotes date.py
You can pass arguments to the script like this.
python -m backquotes date.py 2015 10 31
Preprocess Python code
Run python with -m backquotes -E option to only preprocess the given source file and print the result to stdout.
mkdir dist
python -m backquotes -E date.py > dist/date.py
python dist/date.py
Restrictions
backquotes does not work in Python REPL. Importing it in REPL causes warnings.
A module which imports backquotes does not work when it is imported by another module.
Install
pip install backquotes
or
git clone https://github.com/manicmaniac/backquotes.git
cd backquotes
python setup.py install
or
wget https://raw.githubusercontent.com/manicmaniac/backquotes/master/backquotes.py
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
File details
Details for the file backquotes-0.1.0.tar.gz
.
File metadata
- Download URL: backquotes-0.1.0.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.27.1 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/2.7.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5324e4ef6d1682676b9f25a2b8e430042dd910f189f8a0fc4fec32e1c078345d |
|
MD5 | a09675e2f57c75369615fa6bf473f207 |
|
BLAKE2b-256 | 666cc82794500706ea60a4157e3ce07c3d1aa82f5c369a4fdc745bbe66a857eb |