#!/usr/bin/env python
import feed2twitter
import time

if __name__=="__main__":
    while 1:
      feed2twitter.update()
      time.sleep(3600)

