From 6f628ca24ac2b243dd4a611ff1ecff2d35aaa019 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Wed, 29 Nov 2017 13:25:30 +0100 Subject: Use Chrome’s timestamps as WARC-Date MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crocoite/browser.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'crocoite/browser.py') diff --git a/crocoite/browser.py b/crocoite/browser.py index 756fd64..67c75c3 100644 --- a/crocoite/browser.py +++ b/crocoite/browser.py @@ -31,8 +31,8 @@ class Item: """ def __init__ (self): - self._chromeRequest = None - self._chromeResponse = None + self.chromeRequest = None + self.chromeResponse = None self.encodedDataLength = 0 def __repr__ (self): @@ -40,25 +40,25 @@ class Item: @property def request (self): - return self._chromeRequest['request'] + return self.chromeRequest['request'] @property def response (self): - return self._chromeResponse['response'] + return self.chromeResponse['response'] @property def initiator (self): - return self._chromeRequest['initiator'] + return self.chromeRequest['initiator'] @property def id (self): - return self._chromeRequest['requestId'] + return self.chromeRequest['requestId'] def setRequest (self, req): - self._chromeRequest = req + self.chromeRequest = req def setResponse (self, resp): - self._chromeResponse = resp + self.chromeResponse = resp class SiteLoader: """ -- cgit v1.2.3