Well, I think it is better to start with some simple code first. Try to read serial port and print it out. something like this could work:
import serial
s = serial.Serial(port=2,baudrate=38400, timeout=20)
while 1:
print s.readline()
Petr Jakes
--
http://mail.python.org/mailman/listinfo/python-list
