Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #26247
| From | Peter Otten <__peter__@web.de> |
|---|---|
| Subject | Re: Linux shell to python |
| Date | 2012-07-30 13:58 +0200 |
| Organization | None |
| References | <1343631941.7199.YahooMailNeo@web193104.mail.sg3.yahoo.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.2726.1343649543.4697.python-list@python.org> (permalink) |
Vikas Kumar Choudhary wrote:
> let me know if someone has tried to implement (grep and PIPE) shell
> commands in python `lspci | grep Q | grep "$isp_str1" | grep "$isp_str2"
> | cut -c1-7'
>
> I tried to use python subprocess and OS.Popen modules.
subprocess is the way to go.
> I was trying porting from bash shell to python.
Here's an example showing how to translate a shell pipe:
http://docs.python.org/library/subprocess.html#replacing-shell-pipeline
But even if you can port the shell script literally I recommend a more
structured approach:
import subprocess
import itertools
def parse_data(lines):
for not_empty, group in itertools.groupby(lines, key=bool):
if not_empty:
triples = (line.partition(":") for line in group)
pairs = ((left, right.strip()) for left, sep, right in triples)
yield dict(pairs)
if __name__ == "__main__":
def get(field):
return entry.get(field, "").lower()
output = subprocess.Popen(["lspci", "-vmm"],
stdout=subprocess.PIPE).communicate()[0]
for entry in parse_data(output.splitlines()):
if "nvidia" in get("Vendor") and "usb" in get("Device"):
print entry["Slot"]
print entry["Device"]
print
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: Linux shell to python Peter Otten <__peter__@web.de> - 2012-07-30 13:58 +0200
csiph-web