11 from PyQt4.QtNetwork import QNetworkRequest |
11 from PyQt4.QtNetwork import QNetworkRequest |
12 |
12 |
13 |
13 |
14 class FollowRedirectReply(QObject): |
14 class FollowRedirectReply(QObject): |
15 """ |
15 """ |
16 Class implementing a network reply delegate allowing to check redirects |
16 Class implementing a network reply delegate allowing to check redirects. |
17 """ |
17 """ |
18 finished = pyqtSignal() |
18 finished = pyqtSignal() |
19 |
19 |
20 def __init__(self, url, manager, maxRedirects=5): |
20 def __init__(self, url, manager, maxRedirects=5): |
21 """ |
21 """ |