Sophie

Sophie

distrib > Mageia > 6 > x86_64 > by-pkgid > 09408f3c1571cbb746da49a1d2f22702 > files > 2793

python-twisted-17.5.0-1.mga6.x86_64.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()