Hi, I am running a Python script that retrieves Twitter data (detached using screen). It sometimes gives the error “connection was forcibly closed by remote host”. Is it possible to automate sending an email or restart the script when it gives an error? The script is saving the output to a file and not printing anything on the screen, if that helps.
It runs on Ubuntu 12.04.3 x64
I am also attaching the script. Thank you.
class CustomStreamListener(tweepy.StreamListener): def on_status(self, status): if status.lang == “tr”: with codecs.open(os.path.join(_dir, ‘do.json’), “a”, ‘utf-8’) as textFile: textFile.write(status.json) textFile.write(‘\n’)
def on_error(self, status_code):
print >> sys.stderr, 'Encountered error with status code:', status_code
return True # Don't kill the stream
def on_timeout(self):
print >> sys.stderr, 'Timeout...'
return True # Don't kill the stream
if name == ‘main’: print “extracting” l = CustomStreamListener() auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_token, access_token_secret)
stream = tweepy.Stream(auth, l)
stream.filter(track = keyword)
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.