Search Results

8
votes
2answers
984 views

What is the best way to do Bit Field manipulation in Python?

I'm reading some MPEG Transport Stream protocol over UDP and it has some funky bitfields in it (length 13 for example). I'm using the "struct" library to do the broad unpacking, but is there a simp …
0
votes
3answers
58 views

Finding the MAC address of the sender of a multicast UDP message in Python?

I have some code that listens for "announcements" via UDP multicast. I can get the IP address of the sender, but what I really need is the MAC address of the sender (since the IP address can and wi …
0
votes

What Hosting Service is best for Django applications?

I used highspeedrails.com but found their support to be terrible. It's fast support, but tramples on your install and is very surly (one over-taxed support person). Webfaction sounds good. …
1
vote

How do I script an OLE component using Python?

win32com is a good package to use if you want to use the IDispatch interface to control your objects (slow). comtypes is a better, native python, package that uses the raw COM approach to talking t …