Sophie

Sophie

distrib > Mageia > 6 > i586 > media > core-release > by-pkgid > 248e2f92d9b832e75f95c6042e4252e2 > files > 2718

python-twisted-16.3.2-1.mga6.i586.rpm

# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

"""
Example Shoutcast client. Run with:

python shoutcast.py localhost 8080
"""
from __future__ import print_function

import sys

from twisted.internet import protocol, reactor
from twisted.protocols.shoutcast import ShoutcastClient

class Test(ShoutcastClient):
    def gotMetaData(self, data):
        print("meta:", data)

    def gotMP3Data(self, data):
        pass

host = sys.argv[1]
port = int(sys.argv[2])

protocol.ClientCreator(reactor, Test).connectTCP(host, port)
reactor.run()