Skip to content

Instantly share code, notes, and snippets.

@cdunklau
cdunklau / python-bitly-links.py
Last active January 29, 2017 20:05
Short links to good texts and presentations about Python, from a few of the denizens of #python
@provegard
provegard / ssdp-test.py
Created December 5, 2011 21:52
Small SSDP server/client test in Python
#!/usr/bin/python
# Python program that can send out M-SEARCH messages using SSDP (in server
# mode), or listen for SSDP messages (in client mode).
import sys
from twisted.internet import reactor, task
from twisted.internet.protocol import DatagramProtocol
SSDP_ADDR = '239.255.255.250'