---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-7-d88ca3043539> in <module>()
44
45 twitterStream = Stream(auth, listener(start_time, time_limit=200)) #initialize Stream object with a time out limit
---> 46 twitterStream.filter(track=keyword_list, languages=['en']) #call the filter method to run the Stream Object
C:\Users\Vamps\Anaconda2\lib\site-packages\tweepy\streaming.pyc in filter(self, follow, track, async, locations, stall_warnings, languages, encoding, filter_level)
443 self.session.params = {'delimited': 'length'}
444 self.host = 'stream.twitter.com'
--> 445 self._start(async)
446
447 def sitestream(self, follow, stall_warnings=False,
C:\Users\Vamps\Anaconda2\lib\site-packages\tweepy\streaming.pyc in _start(self, async)
359 self._thread.start()
360 else:
--> 361 self._run()
362
363 def on_closed(self, resp):
C:\Users\Vamps\Anaconda2\lib\site-packages\tweepy\streaming.pyc in _run(self)
292 # call a handler first so that the exception can be logged.
293 self.listener.on_exception(exception)
--> 294 raise exception
295
296 def _data(self, data):
TypeError: write() argument 1 must be unicode, not str