Download the content at the given URL. By default it will be cached - see URL.download().
(self, *args, **kwargs)
| 939 | return self.text # Backwards compatibility. |
| 940 | |
| 941 | def download(self, *args, **kwargs): |
| 942 | """ Download the content at the given URL. |
| 943 | By default it will be cached - see URL.download(). |
| 944 | """ |
| 945 | return URL(self.url).download(*args, **kwargs) |
| 946 | |
| 947 | def __getattr__(self, k): |
| 948 | return self.get(k, u"") |