zenx 0.8.6__tar.gz → 0.8.7__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.8.6 → zenx-0.8.7}/PKG-INFO +1 -1
- {zenx-0.8.6 → zenx-0.8.7}/pyproject.toml +1 -1
- {zenx-0.8.6 → zenx-0.8.7}/zenx/pipelines/websocket.py +2 -2
- {zenx-0.8.6 → zenx-0.8.7}/zenx.egg-info/PKG-INFO +1 -1
- {zenx-0.8.6 → zenx-0.8.7}/setup.cfg +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/cli.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/clients/__init__.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/clients/database.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/clients/http.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/debug_runner.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/discovery.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/engine.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/exceptions.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/logger.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/pipelines/__init__.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/pipelines/base.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/pipelines/google_rpc.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/pipelines/manager.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/pipelines/preprocess.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/resources/proto/__init__.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/resources/proto/feed_pb2.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/resources/proto/feed_pb2_grpc.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/settings.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/spiders/__init__.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/spiders/base.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx/utils.py +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx.egg-info/SOURCES.txt +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx.egg-info/dependency_links.txt +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx.egg-info/entry_points.txt +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx.egg-info/requires.txt +0 -0
- {zenx-0.8.6 → zenx-0.8.7}/zenx.egg-info/top_level.txt +0 -0
@@ -2,16 +2,16 @@ import asyncio
|
|
2
2
|
import json
|
3
3
|
from typing import Dict, Optional
|
4
4
|
from structlog import BoundLogger
|
5
|
-
from websockets import ConnectionClosed
|
6
5
|
|
7
6
|
from zenx.clients.database import DBClient
|
8
7
|
from zenx.settings import Settings
|
9
8
|
from zenx.pipelines.base import Pipeline
|
10
|
-
from zenx.utils import
|
9
|
+
from zenx.utils import log_processing_time
|
11
10
|
|
12
11
|
|
13
12
|
try:
|
14
13
|
import websockets
|
14
|
+
from websockets import ConnectionClosed
|
15
15
|
|
16
16
|
class SynopticWebSocketPipeline(Pipeline): # type: ignore[reportRedeclaration]
|
17
17
|
name = "synoptic_websocket"
|
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
|