In Python, set the timeout time for feedparser. Tutorial: pythonfeedparser
Python has a module for parsing feed: feedparser. It is very convenient for feedparser to parse various feeds. The only annoying thing is that some badurls often cause congestion, therefore, you need to set a timeout value for feedparser.
However, feedparser does not provide this function and has to use other methods. For details, see the feedparser project's issue221.
It's actually quite simple. Follow the instructions in the above document.
Developers hav (www.111cn.net) e had the ability to set a global timeout for over seven years by importing the socket library and setting the timeout in this way:
Import socket
Socket. setdefatimetimeout (<timeout in floating seconds>)
From: http://www.111cn.net/phper/python/66849.htm
Set timeout for cookies in python django
I wonder if you have used the set_cookie function to set the cookie?
HttpResponse. set_cookie (key, value = '', max_age = None, expires = None, path = '/', domain = None, secure = None, httponly = True)
In this function, max_age is the cookie timeout time in seconds.
You can also use expires to set the absolute time as the validity period. Format: "Wdy, DD-Mon-yy hh: MM: ss gmt". expires can also be an object of datetime. datetime.
Python installation feedparser-513 problems, python27 version
Enter commands in the command line window of the system, instead of in the python command line. For example, windows is a "command prompt" tool, and Linux directly runs the command on the terminal.