zenx 0.6.0__tar.gz → 0.6.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {zenx-0.6.0 → zenx-0.6.1}/PKG-INFO +1 -1
- {zenx-0.6.0 → zenx-0.6.1}/pyproject.toml +1 -1
- {zenx-0.6.0 → zenx-0.6.1}/zenx/clients/http.py +2 -2
- {zenx-0.6.0 → zenx-0.6.1}/zenx.egg-info/PKG-INFO +1 -1
- {zenx-0.6.0 → zenx-0.6.1}/setup.cfg +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/cli.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/clients/__init__.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/clients/database.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/debug_runner.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/discovery.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/engine.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/exceptions.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/logger.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/pipelines/__init__.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/pipelines/base.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/pipelines/google_rpc.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/pipelines/manager.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/pipelines/preprocess.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/pipelines/websocket.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/resources/proto/__init__.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/resources/proto/feed_pb2.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/resources/proto/feed_pb2_grpc.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/settings.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/spiders/__init__.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/spiders/base.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx/utils.py +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx.egg-info/SOURCES.txt +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx.egg-info/dependency_links.txt +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx.egg-info/entry_points.txt +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx.egg-info/requires.txt +0 -0
- {zenx-0.6.0 → zenx-0.6.1}/zenx.egg-info/top_level.txt +0 -0
@@ -124,7 +124,7 @@ class CurlCffi(HttpClient):
|
|
124
124
|
)
|
125
125
|
recv_at = get_time()
|
126
126
|
latency = recv_at - req_at
|
127
|
-
self.logger.debug("response", status=response.status_code, url=url, impersonate=impersonate, client=self.name, requested_at=req_at, responded_at=recv_at, latency_ms=latency)
|
127
|
+
self.logger.debug("response", status=response.status_code, url=url, impersonate=session.impersonate, client=self.name, requested_at=req_at, responded_at=recv_at, latency_ms=latency)
|
128
128
|
except Exception:
|
129
129
|
self.logger.exception("request", url=url, client=self.name)
|
130
130
|
raise
|
@@ -144,7 +144,7 @@ class CurlCffi(HttpClient):
|
|
144
144
|
)
|
145
145
|
recv_at = get_time()
|
146
146
|
latency = recv_at - req_at
|
147
|
-
self.logger.debug("response", status=response.status_code, url=url, impersonate=impersonate, client=self.name, requested_at=req_at, responded_at=recv_at, latency_ms=latency)
|
147
|
+
self.logger.debug("response", status=response.status_code, url=url, impersonate=session.impersonate, client=self.name, requested_at=req_at, responded_at=recv_at, latency_ms=latency)
|
148
148
|
except Exception:
|
149
149
|
self.logger.exception("request", url=url, client=self.name)
|
150
150
|
raise
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|