v2.8.0
===================================================================== --- Changes ------------------------------ - python library functions moved to `py/lib` - python scwrypts renamed in kebob-case to help prevent import - __name__ == '__main__' enforced on all python scwrypts --- New Features ------------------------- - `__override` variables now allow values to be force-overwritten - py.lib.http.client provides a slim `requests.request` wrapper --- New Scripts -------------------------- py/data/convert ) quick data converters - csv-to-json - csv-to-yaml - json-to-csv - json-to-yaml - yaml-to-csv - yaml-to-json py/linear ) uses the linear.app graphql API for PM tasks - comment --- Bug Fixes ---------------------------- - `scwrypts` handles arguments with quotes and special characters
This commit is contained in:
19
py/hello-world.py
Executable file
19
py/hello-world.py
Executable file
@ -0,0 +1,19 @@
|
||||
#!/usr/bin/env python
|
||||
from argparse import ArgumentParser
|
||||
|
||||
if __name__ != '__main__':
|
||||
raise Exception('executable only; must run through scwrypts')
|
||||
|
||||
|
||||
parser = ArgumentParser(description = 'a simple "Hello, World!" program')
|
||||
parser.add_argument(
|
||||
'-m', '--message',
|
||||
dest = 'message',
|
||||
default = 'HELLO WORLD',
|
||||
help = 'message to print to stdout',
|
||||
required = False,
|
||||
)
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
print(args.message)
|
Reference in New Issue
Block a user