Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeonion/a348f3cc3e580347266fec8f1de6c0d4 to your computer and use it in GitHub Desktop.
Save codeonion/a348f3cc3e580347266fec8f1de6c0d4 to your computer and use it in GitHub Desktop.
import argparse
# GET ORDER ID
parser = argparse.ArgumentParser(description='For blog.codeonion.com my visitors!')
parser.add_argument("--argument_to_be_passed", required=True, type=str, help="Please pass a value into --argument_to_be_passed")
args = parser.parse_args()
value = args.argument_to_be_passed
print(value)
import argparse
# GET ORDER ID
parser = argparse.ArgumentParser(description='For blog.codeonion.com my visitors!')
parser.add_argument("--argument_to_be_passed", required=True, type=str, help="Please pass a value into --argument_to_be_passed")
args = parser.parse_args()
value = args.argument_to_be_passed
print(value)
; Autoexecute
#NoEnv
#SingleInstance force
return
#^space::
run cmd.exe
WinWait, ahk_exe cmd.exe ; Intention to make sure the next line doesn't execute too soon and not hit CMD (I have not checked for an appropriate WinTitle. But you can definitely get it.)
Send c:{enter} ; Go to C drive
Send cd C:\python\blog\{enter} ; go to script's folder
Send python arguments.py --argument_to_be_passed CODEONION{enter}
return
; Autoexecute
#NoEnv
#SingleInstance force
return
#^space::
run cmd.exe
WinWait, ahk_exe cmd.exe ; Intention to make sure the next line doesn't execute too soon and not hit CMD (I have not checked for an appropriate WinTitle. But you can definitely get it.)
Send c:{enter} ; Go to C drive
Send cd C:\python\blog\{enter} ; go to script's folder
Send python arguments.py --argument_to_be_passed CODEONION{enter}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment