9 lines
135 B
Python
Executable File
9 lines
135 B
Python
Executable File
#!/bin/env python3
|
|
|
|
import argparse
|
|
|
|
|
|
if __name__ == '__main__':
|
|
parser = argparse.ArgumentParser()
|
|
args = parser.parse_args()
|