예제 #1
0
# Copyright 2009-2010 Joshua Roesslein
# See LICENSE for details.

import httplib
from socket import timeout
from threading import Thread
from time import sleep
import urllib

from weibo.weibopy.auth import BasicAuthHandler
from weibo.weibopy.models import Status
from weibo.weibopy.api import API
from weibo.weibopy.error import WeibopError

from weibo.weibopy.utils import import_simplejson
json = import_simplejson()

STREAM_VERSION = 1


class StreamListener(object):

    def __init__(self, api=None):
        self.api = api or API()

    def on_data(self, data):
        """Called when raw data is received from connection.

        Override this method if you wish to manually handle
        the stream data. Return False to stop stream and close connection.
        """
예제 #2
0
 def __init__(self):
     self.json_lib = import_simplejson()
예제 #3
0
 def __init__(self):
     self.json_lib = import_simplejson()
예제 #4
0
파일: streaming.py 프로젝트: ceciet/Pandora
# See LICENSE for details.

import httplib
from socket import timeout
from threading import Thread
from time import sleep
import urllib

from weibo.weibopy.auth import BasicAuthHandler
from weibo.weibopy.models import Status
from weibo.weibopy.api import API
from weibo.weibopy.error import WeibopError

from weibo.weibopy.utils import import_simplejson

json = import_simplejson()

STREAM_VERSION = 1


class StreamListener(object):
    def __init__(self, api=None):
        self.api = api or API()

    def on_data(self, data):
        """Called when raw data is received from connection.

        Override this method if you wish to manually handle
        the stream data. Return False to stop stream and close connection.
        """