Browse Source

added timeout after that the webpage still will be loaded

master
T. Meissner 10 years ago
parent
commit
3a6d1e600d
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      python_3_oop/chapter05/webpage.py

+ 4
- 2
python_3_oop/chapter05/webpage.py View File

@ -6,13 +6,15 @@ class WebPage:
def __init__(self, url):
self.url = url
self.an_old_time = 0
self._content = None
@property
def content(self):
now = time.time()
if not self._content:
if not self._content or (now - self.an_old_time > 10):
self.an_old_time = now
print("Retrieving new page...")
self._content = urlopen(self.url).read()
print("Got page in {} seconds".format(time.time() - now))
return self._content
return self._content

Loading…
Cancel
Save