Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #73307
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!us.feeder.erje.net!newsfeed.fsmpi.rwth-aachen.de!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <antoon.pardon@rece.vub.ac.be> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.035 |
| X-Spam-Evidence | '*H*': 0.93; '*S*': 0.00; 'received:134': 0.05; 'string': 0.09; 'subject:skip:t 10': 0.09; 'argument.': 0.16; 'file"': 0.16; 'looked': 0.18; 'command': 0.22; 'header:User- Agent:1': 0.23; 'interface': 0.32; 'something': 0.35; 'but': 0.35; 'list.': 0.37; 'to:addr:python-list': 0.38; 'does': 0.39; 'to:addr:python.org': 0.39; 'pardon': 0.84; 'partially': 0.84 |
| X-IronPort-Anti-Spam-Filtered | true |
| X-IronPort-Anti-Spam-Result | AqAEAP++nlOGuA9G/2dsb2JhbABahyXAIgGBMoUiBFEqDAIFFgsCCwMCAQIBPwwNCAKIPqFqjyOYYoUmF4EqkEqBTAEDmkOGY4x1g0I |
| Date | Mon, 16 Jun 2014 11:56:49 +0200 |
| From | Antoon Pardon <antoon.pardon@rece.vub.ac.be> |
| User-Agent | Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Icedove/24.5.0 |
| MIME-Version | 1.0 |
| To | Pyton List <python-list@python.org> |
| Subject | line to argv transformation |
| Content-Type | text/plain; charset=UTF-8 |
| Content-Transfer-Encoding | 7bit |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.11079.1402912714.18130.python-list@python.org> (permalink) |
| Lines | 13 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1402912714 news.xs4all.nl 2945 [2001:888:2000:d::a6]:38212 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:73307 |
Show key headers only | View raw
I am looking for an interface that takes a string as argument. The string is to be treated as if it is a command line and transformed into an argv list. "ls file" -> ['ls', 'file'] "ls *.py" -> ['ls', 'file1.py', 'file2.py', ...] "ls '*.py'" -> ['ls', '*.py'] Does something like this already exist? I looked around but seem to find only things only partially do things like this, like shlex.split. -- Antoon Pardon
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
line to argv transformation Antoon Pardon <antoon.pardon@rece.vub.ac.be> - 2014-06-16 11:56 +0200
csiph-web