I installed pySterial as suggested here :
http://www.arduino.cc/playground/Interfacing/Pythonand this is what I got in python. any idea what went wrong? any clue how I can still get my win-pc to talk to arduino in python?
Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
****************************************************************
Personal firewall software may warn about the connection IDLE
makes to its subprocess using this computer's internal loopback
interface. This connection is not visible on any external
interface and no data is sent to or received from the Internet.
****************************************************************
IDLE 1.2.1
>>> import serial
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import serial
File "C:\Python25\Lib\site-packages\serial\__init__.py", line 13, in <module>
from serialwin32 import *
File "C:\Python25\Lib\site-packages\serial\serialwin32.py", line 9, in <module>
import win32file # The base COM port and file IO functions.
ImportError: No module named win32file
>>>