I want to develop some protocols that helps in the functioning of UPNP(universal plug and play) and simple service discovery protocol. I need to find the libraries for python and upnp so that I can read them and it becomes easy for me to understand when i used them. Please provide me the links for it.
Asked
Active
Viewed 3,978 times
1 Answers
2
MiniUPnP is a popular UPnP library with Python hooks. For Python libraries, look in the Python distribution. Mine are in /usr/lib/python2.6
and /usr/lib/python3.1
. There are libraries galore to read there.

nmichaels
- 49,466
- 12
- 107
- 135
-
1How do I use the MiniUPNP library with python? I mean- how do i install itwith my opython. I have installedpython 2.7 on My PC. – KIT Jan 20 '11 at 19:23
-
@KIT The man page of miniupnp has demonstrated the interface for how using the library, which can be invoked from python via ctypes, but of course there are upnp clients implemented in pure python. I googled around and couple of candidates came out. – Meow May 13 '15 at 01:19