/winamp-whip

A server-client pair for controlling Winamp playback over the network on windows. Written in Python 3

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Copyright 2012 Joey

winamp-whip is released under GPL. Please read the license before continuing.

The latest source can be found here:
	https://github.com/jvq2/winamp-whip
	
===========================================================

Example Usage:
	
	Server: (optionally - just start winampwhip.py by itself {connects to localhost:6969})
		
		>>> from winampwhip import *
		>>> server = RemoteServer("127.0.0.1", 6969)
		>>> server.serve_forever()
	
	
	Client: (see example-remote.py for more)
		
		>>> import winampwhip
		>>> remote = winampwhip.Remote("127.0.0.1", 6969)
		>>> remote.play()