Best way to poll a web service (eg, for a twitter app) - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T10:33:52Zhttp://stackoverflow.com/feeds/question/430226http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/430226/best-way-to-poll-a-web-service-eg-for-a-twitter-app1Best way to poll a web service (eg, for a twitter app)unknown (google)2009-01-10T00:10:56Z2009-01-10T00:31:53Z
<p>Hi,</p>
<p>I need to poll a web service, in this case twitter's API, and I'm wondering what the conventional wisdom is on this topic. I'm not sure whether this is important, but I've always found feedback useful in the past.</p>
<p>A couple scenarios I've come up with:</p>
<ol>
<li><p>The querying process starts every X seconds, eg a cron job runs a python script</p></li>
<li><p>A process continually loops and queries at each iteration, eg ... well, here is where I enter unfamiliar territory. Do I just run a python script that doesn't end?</p></li>
</ol>
<p>Thanks for your advice.</p>
<p>ps - regarding the particulars of twitter: I know that it sends emails for following and direct messages, but sometimes one might want the flexibility of parsing @replies. In those cases, I believe polling is as good as it gets.</p>
<p>pps - twitter limits bots to 100 requests per 60 minutes. I don't know if this also limits web scraping or rss feed reading. Anyone know how easy or hard it is to be whitelisted?</p>
<p>Thanks again.</p>
http://stackoverflow.com/questions/430226/best-way-to-poll-a-web-service-eg-for-a-twitter-app/430245#4302450Answer by BobbyShaftoe for Best way to poll a web service (eg, for a twitter app)BobbyShaftoe2009-01-10T00:22:11Z2009-01-10T00:22:11Z<p>You should have a page that is like a Ping or Heartbeat page. The you have another process that "tickles" or hits that page, usually you can do this in your Control Panel of your web host, or use a cron if you have a local access. Then this script can keep statistics of how often it has polled in a database or some data store and then you poll the service as often as you really need to, of course limiting it to whatever the providers limit is. You definitely don't want to (and certainly don't want to rely) on a python scrip that "doesn't end." :)</p>
http://stackoverflow.com/questions/430226/best-way-to-poll-a-web-service-eg-for-a-twitter-app/430258#4302584Answer by S.Lott for Best way to poll a web service (eg, for a twitter app)S.Lott2009-01-10T00:31:53Z2009-01-10T00:31:53Z<p>"Do I just run a python script that doesn't end?"</p>
<p>How is this unfamiliar territory?</p>
<pre><code>import time
polling_interval = 36.0 # (100 requests in 3600 seconds)
running= True
while running:
start= time.clock()
poll_twitter()
anything_else_that_seems_important()
work_duration = time.clock() - start
time.sleep( polling_interval - work_duration )
</code></pre>
<p>It's just a loop.</p>