source:
genapp/etc/bp/python
Last change on this file was 765, checked in by ehb, 6 years ago | |
---|---|
|
|
File size: 347 bytes |
Line | |
---|---|
1 | #!/usr/bin/python |
2 | import json, sys, StringIO |
3 | |
4 | if __name__=='__main__': |
5 | |
6 | argv_io_string = StringIO.StringIO(sys.argv[1]) |
7 | json_variables = json.load(argv_io_string) |
8 | |
9 | |
10 | # path = base_directory.replace('\/','/') + "/" |
11 | # os.chdir(path) |
12 | # sys.path.append('./') |
13 | |
14 | output = {} |
15 | output["note"] = "__moduleid__ executable"; |
16 | |
17 | print json.dumps(output) |
18 |
Note: See TracBrowser
for help on using the repository browser.