Created
February 12, 2020 09:04
-
-
Save nonZero/2143250c82ec785c745de92bd38c8c04 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import os | |
import subprocess | |
import sys | |
if "--hebrew" in sys.argv: | |
print("איזה קומבינה!!!") | |
elif "--audio" in sys.argv: | |
subprocess.check_output(['play', '-q', os.path.join(os.path.dirname(__file__), 'netanel.opus')]) | |
else: | |
print("Eize Combina!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment