Created
August 24, 2014 05:34
-
-
Save aclissold/c6dcdee3838f23cee7cd to your computer and use it in GitHub Desktop.
This file contains 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/env python3 | |
import sys | |
keys = { | |
'C4': 'q', 'C#4': 'a', 'Db4': 'a', 'D4': 'z', | |
'G4': 'd', | |
'E5': 'h', | |
'C5': 't', | |
'G5': 'j', | |
} | |
with open(sys.argv[1]) as f: | |
for line in f: | |
for note in line.split(' '): | |
note = note.strip() | |
print(keys[note], end='') | |
print() |
This file contains 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
E5 E5 E5 C5 E5 G5 G4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment