Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #108659
| From | Peter Otten <__peter__@web.de> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Re: Trouble porting glob bash behavior with argparse to windows shell |
| Date | 2016-05-16 08:58 +0200 |
| Organization | None |
| Message-ID | <mailman.10.1463381968.19823.python-list@python.org> (permalink) |
| References | (2 earlier) <ngb4e2$dtt$1@ger.gmane.org> <mailman.363.1462310161.32212.python-list@python.org> <125a6208-8752-482e-ac8f-8ef2be012dae@googlegroups.com> <8d064bd8-5c4e-4693-97d0-2bff5a102ee3@googlegroups.com> <nhbr3b$gcl$1@ger.gmane.org> |
Sayth Renshaw wrote:
> On Wednesday, 4 May 2016 17:57:32 UTC+10, Sayth Renshaw wrote:
>> Oops sorry noticed you did in the glob. Sorry squinting at phone.
>>
>> Sayth
>
> Hi
>
> this seems to be causing me an error in my thinking as well as the
> program. I am creating a function GetArgs to take a path and file
> extension from the command line.
>
> However I cannot call it effectively. I will clrify this is my function
>
> import argparse
> import glob
> import os
> import sqlite3
>
>
> def GetArgs(parser):
> '''parse XML from command line'''
> parser.add_argument("path", nargs="+")
> parser.add_argument('-e', '--extension', default='',
> help='File extension to filter by.')
> args = parser.parse_args()
>
> files = set()
> name_pattern = "*" + args.extension
> for path in args.path:
> files.update(glob.glob(os.path.join(path, name_pattern)))
> return files
>
> Then later in program I am attempting to call it an a for statement.
>
> filesToProcess = GetArgs()
> for meeting in filesToProcess:
> meetdata = [meeting.get(attr) for attr in meetattrs]
> cur.execute("insert into meetings values (" +
> ",".join(["%s"] * len(meetattrs)) + ")", meetdata)
>
>
> this fails as i would expect, however if I declare a list as the GetArgs()
> argument it fails as well.
>
> Where my confusion is that I created the function to take arguments from
> the command line, so I don't have that variable to supply until executed.
>
> Have i overbaked the cake?
The actual arguments are in sys.argv and will be implicitly accessed by the
parser.parse_args() method invocation. The problem is simply that you don't
create an argparse.ArgumentParser() instance. I suggest that you do that
inside the GetArgs() function:
def GetArgs(): # no arguments
parser = argparse.ArgumentParser()
# your current code below
parser.add_argument("path", nargs="+")
...
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Trouble porting glob bash behavior with argparse to windows shell Sayth Renshaw <flebber.crue@gmail.com> - 2016-05-03 04:34 -0700
Trouble porting glob bash behavior with argparse to windows shell Sayth Renshaw <flebber.crue@gmail.com> - 2016-05-03 13:55 -0700
Re: Trouble porting glob bash behavior with argparse to windows shell Peter Otten <__peter__@web.de> - 2016-05-03 23:15 +0200
Re: Trouble porting glob bash behavior with argparse to windows shell Sayth Renshaw <flebber.crue@gmail.com> - 2016-05-04 00:56 -0700
Re: Trouble porting glob bash behavior with argparse to windows shell Sayth Renshaw <flebber.crue@gmail.com> - 2016-05-04 00:57 -0700
Re: Trouble porting glob bash behavior with argparse to windows shell Sayth Renshaw <flebber.crue@gmail.com> - 2016-05-15 20:21 -0700
Re: Trouble porting glob bash behavior with argparse to windows shell Peter Otten <__peter__@web.de> - 2016-05-16 08:58 +0200
Re: Trouble porting glob bash behavior with argparse to windows shell Terry Reedy <tjreedy@udel.edu> - 2016-05-03 18:00 -0400
csiph-web