[pylons-discuss] Re: tweepy streaming api interferes with pserve?

2015-08-01 Thread Michael
Forgot to add, I'm using pyramid 1.5.4 or so.. On Saturday, August 1, 2015 at 2:12:00 PM UTC-4, Michael wrote: Hi, I'm trying to use tweepy's streaming api to listen for tweets but it seems when I initialize it, pserve just will not serve on 0.0.0.0:6543 Any idea what might be happening? I

Re: [pylons-discuss] Re: tweepy streaming api interferes with pserve?

2015-08-01 Thread Mazzaroth M.
That did the trick! Thanks! twitterStream.userstream(with=following, async=True) On Sat, Aug 1, 2015 at 10:23 PM, Carlos de la Guardia carlos.delaguar...@gmail.com wrote: The problem is the user stream blocks and never returns:

Re: [pylons-discuss] Re: tweepy streaming api interferes with pserve?

2015-08-01 Thread Carlos de la Guardia
The problem is the user stream blocks and never returns: http://tweepy.readthedocs.org/en/v3.3.0/streaming_how_to.html?highlight=stream#async-streaming Carlos de la Guardia On Sat, Aug 1, 2015 at 8:26 PM, Michael taomaili...@gmail.com wrote: Hi Laurent, on Mac OS X 10.10.4 I upgraded python

Re: [pylons-discuss] Re: tweepy streaming api interferes with pserve?

2015-08-01 Thread Laurent DAVERIO
Hello, have you tried addressing the Insecure Platform Warning problem, as indicated in the error message? https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning Laurent. -- You received this message because you are subscribed to the Google Groups pylons-discuss

Re: [pylons-discuss] Re: tweepy streaming api interferes with pserve?

2015-08-01 Thread Michael
Hi Laurent, on Mac OS X 10.10.4 I upgraded python and the virtualenv to 2.7.10 to address the issue. I no longer get the Insecure Platform Warning. pserve still appears blocked because I never get the confirmation message that it is serving on 0.0.0.0:6543 I'm not sure where to go with this. I