Skip to content

Commit

Permalink
add script
Browse files Browse the repository at this point in the history
  • Loading branch information
jbukhari committed May 13, 2024
1 parent 919be47 commit 2c324b6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions package/scripts/script.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

import sys
from argparse import ArgumentParser
from package.module import Class # rename package, module and class

def get_args():
parser = ArgumentParser()
parser.add_argument('--arg', help='')

return parser.parse_args()

def run():
args = get_args()
c = Class()
c.hello_world()

return

0 comments on commit 2c324b6

Please sign in to comment.