A
Adam Funk
I'm using to using Pod::Usage in my Perl programs (a snipped example
is shown below, if you're interested) to generate a little man page
when they are called with the -h option.
Is there an equivalent in Python?
Thanks,
Adam
##########
use Pod::Usage;
getopts("ha:b:c", \%option) ;
if ($option{h}) {
pod2usage(-verbose => 2);
die("\n\n");
}
# REST OF PROGRAM HERE!
#####
=head1 Documentation
=head2 Synopsis
COMMAND OPTION(S) [FILE(S)]
=head2 Options
=over
=item -h
Get this help.
....
=back
=cut
#####
is shown below, if you're interested) to generate a little man page
when they are called with the -h option.
Is there an equivalent in Python?
Thanks,
Adam
##########
use Pod::Usage;
getopts("ha:b:c", \%option) ;
if ($option{h}) {
pod2usage(-verbose => 2);
die("\n\n");
}
# REST OF PROGRAM HERE!
#####
=head1 Documentation
=head2 Synopsis
COMMAND OPTION(S) [FILE(S)]
=head2 Options
=over
=item -h
Get this help.
....
=back
=cut
#####