Python module templates (was python calling python)

Simon Brunning SBrunning at trisystems.co.uk
Wed Aug 23 06:12:23 EDT 2000


> From:	François Pinard [SMTP:pinard at iro.umontreal.ca]
> 
> [Alex Martelli]
> 
> > A fine touch might include:
> 
> > def main(args=sys.argv):
> >     # whatever
> 
> I tried many styles for this, and finally decided that the most useful
> idiom might be:
> 
>     def main(*arguments):
>        import getopt
>        options, arguments = getopt.getopt(...)
>        for option, value in options:
>            ...
>        # rest of programs with arguments...
> 
>     ...
> 
>     if __name__ == '__main__':
>         apply(main, sys.argv[1:])
> 
> so I use it almost identically in all my programs.  From another module,
> one could just use:
> 
>     module.main(OPTION, OPTION..., ARGUMENT, ARGUMENT...)
> 
> passing strings for each.
> 
Do you chaps have a module template? What does it have in it?

Cheers,
Simon Brunning
TriSystems Ltd.
sbrunning at trisystems.co.uk




-----------------------------------------------------------------------
The information in this email is confidential and may be legally privileged.
It is intended solely for the addressee. Access to this email by anyone else
is unauthorised. If you are not the intended recipient, any disclosure,
copying, distribution, or any action taken or omitted to be taken in
reliance on it, is prohibited and may be unlawful. TriSystems Ltd. cannot
accept liability for statements made which are clearly the senders own.




More information about the Python-list mailing list