/usr/lib64/python2.6/Demo/scripts
NameSizeModeActions
beer.py4260644editdlrm
beer.pyc7120644editdlrm
beer.pyo7120644editdlrm
eqfix.py63140755editdlrm
eqfix.pyc47200644editdlrm
eqfix.pyo47200644editdlrm
fact.py11120755editdlrm
fact.pyc11260644editdlrm
fact.pyo11260644editdlrm
find-uname.py12090644editdlrm
find-uname.pyc15460644editdlrm
find-uname.pyo15460644editdlrm
from.py8770755editdlrm
from.pyc7620644editdlrm
from.pyo7620644editdlrm
ftpstats.py45800755editdlrm
ftpstats.pyc39620644editdlrm
ftpstats.pyo39620644editdlrm
lpwatch.py32030755editdlrm
lpwatch.pyc27410644editdlrm
lpwatch.pyo27410644editdlrm
makedir.py5130755editdlrm
makedir.pyc7390644editdlrm
makedir.pyo7390644editdlrm
markov.py37490755editdlrm
markov.pyc43910644editdlrm
markov.pyo43910644editdlrm
mboxconvert.py31920755editdlrm
mboxconvert.pyc33010644editdlrm
mboxconvert.pyo33010644editdlrm
mkrcs.py18220755editdlrm
mkrcs.pyc15190644editdlrm
mkrcs.pyo15190644editdlrm
morse.py43330644editdlrm
morse.pyc44970644editdlrm
morse.pyo44970644editdlrm
newslist.doc24180755editdlrm
newslist.py113630755editdlrm
newslist.pyc79200644editdlrm
newslist.pyo79200644editdlrm
pi.py9310755editdlrm
pi.pyc9310644editdlrm
pi.pyo9310644editdlrm
pp.py39710755editdlrm
pp.pyc24440644editdlrm
pp.pyo24440644editdlrm
primes.py5680755editdlrm
primes.pyc9470644editdlrm
primes.pyo9470644editdlrm
queens.py22410755editdlrm
queens.pyc30460644editdlrm
queens.pyo30460644editdlrm
README10430644editdlrm
script.py7860755editdlrm
script.pyc10030644editdlrm
script.pyo10030644editdlrm
unbirthday.py33190755editdlrm
unbirthday.pyc30420644editdlrm
unbirthday.pyo30420644editdlrm
update.py27530755editdlrm
update.pyc27920644editdlrm
update.pyo27920644editdlrm
wh.py910644editdlrm
wh.pyc1530644editdlrm
wh.pyo1530644editdlrm
Edit: /usr/lib64/python2.6/Demo/scripts/morse.py (4333B)
# DAH should be three DOTs. # Space between DOTs and DAHs should be one DOT. # Space between two letters should be one DAH. # Space between two words should be DOT DAH DAH. import sys, math, audiodev DOT = 30 DAH = 3 * DOT OCTAVE = 2 # 1 == 441 Hz, 2 == 882 Hz, ... morsetab = { 'A': '.-', 'a': '.-', 'B': '-...', 'b': '-...', 'C': '-.-.', 'c': '-.-.', 'D': '-..', 'd': '-..', 'E': '.', 'e': '.', 'F': '..-.', 'f': '..-.', 'G': '--.', 'g': '--.', 'H': '....', 'h': '....', 'I': '..', 'i': '..', 'J': '.---', 'j': '.---', 'K': '-.-', 'k': '-.-', 'L': '.-..', 'l': '.-..', 'M': '--', 'm': '--', 'N': '-.', 'n': '-.', 'O': '---', 'o': '---', 'P': '.--.', 'p': '.--.', 'Q': '--.-', 'q': '--.-', 'R': '.-.', 'r': '.-.', 'S': '...', 's': '...', 'T': '-', 't': '-', 'U': '..-', 'u': '..-', 'V': '...-', 'v': '...-', 'W': '.--', 'w': '.--', 'X': '-..-', 'x': '-..-', 'Y': '-.--', 'y': '-.--', 'Z': '--..', 'z': '--..', '0': '-----', '1': '.----', '2': '..---', '3': '...--', '4': '....-', '5': '.....', '6': '-....', '7': '--...', '8': '---..', '9': '----.', ',': '--..--', '.': '.-.-.-', '?': '..--..', ';': '-.-.-.', ':': '---...', "'": '.----.', '-': '-....-', '/': '-..-.', '(': '-.--.-', ')': '-.--.-', '_': '..--.-', ' ': ' ' } # If we play at 44.1 kHz (which we do), then if we produce one sine # wave in 100 samples, we get a tone of 441 Hz. If we produce two # sine waves in these 100 samples, we get a tone of 882 Hz. 882 Hz # appears to be a nice one for playing morse code. def mkwave(octave): global sinewave, nowave sinewave = '' for i in range(100): val = int(math.sin(math.pi * float(i) * octave / 50.0) * 30000) sinewave = sinewave + chr((val >> 8) & 255) + chr(val & 255) nowave = '\0' * 200 mkwave(OCTAVE) def main(): import getopt, string try: opts, args = getopt.getopt(sys.argv[1:], 'o:p:') except getopt.error: sys.stderr.write('Usage ' + sys.argv[0] + ' [ -o outfile ] [ args ] ...\n') sys.exit(1) dev = None for o, a in opts: if o == '-o': import aifc dev = aifc.open(a, 'w') dev.setframerate(44100) dev.setsampwidth(2) dev.setnchannels(1) if o == '-p': mkwave(string.atoi(a)) if not dev: import audiodev dev = audiodev.AudioDev() dev.setoutrate(44100) dev.setsampwidth(2) dev.setnchannels(1) dev.close = dev.stop dev.writeframesraw = dev.writeframes if args: line = string.join(args) else: line = sys.stdin.readline() while line: mline = morse(line) play(mline, dev) if hasattr(dev, 'wait'): dev.wait() if not args: line = sys.stdin.readline() else: line = '' dev.close() # Convert a string to morse code with \001 between the characters in # the string. def morse(line): res = '' for c in line: try: res = res + morsetab[c] + '\001' except KeyError: pass return res # Play a line of morse code. def play(line, dev): for c in line: if c == '.': sine(dev, DOT) elif c == '-': sine(dev, DAH) else: # space pause(dev, DAH + DOT) pause(dev, DOT) def sine(dev, length): for i in range(length): dev.writeframesraw(sinewave) def pause(dev, length): for i in range(length): dev.writeframesraw(nowave) if __name__ == '__main__' or sys.argv[0] == __name__: main()