I ran into the Windows UDP socket issue the other night. basically I was playing with a script to pull in data from a foreign master server and after messing with it a little (and several hours of searching for badly documented protocol on the partof the master server), I ran into the fact that you can't use the standard python sockets in windows using UDP.
I did a little searching here and there, noticed that some people are resorting to winsock, noticed a minor reference somewhere to win32file, and realized if I really wanted to I could write my own socket interface, but would really rather not.
I'd appreciate any advise people would have on this subject. Ie, isssues you may have run into in the past trying to do this or packages you have found to work better (if there are others), etc.
I did a little searching here and there, noticed that some people are resorting to winsock, noticed a minor reference somewhere to win32file, and realized if I really wanted to I could write my own socket interface, but would really rather not.
I'd appreciate any advise people would have on this subject. Ie, isssues you may have run into in the past trying to do this or packages you have found to work better (if there are others), etc.