Redis-over-WebSocket API on top of websockets and aioredis
Project description
An extensible Redis-over-WebSocket API on top of websockets and aioredis.
Installation
For basic functionality:
pip install redis_websocket_api
With geo extension (filtering messages by extent, projection transformation):
pip install redis_websocket_api[geo]
Server-Side Usage
For a quick test you can run
python -m redis_websocket_api
to start a simple redis websocket api on ws://localhost:8765.
This does roughly the equivalant of:
from aioredis import from_url
from redis_websocket_api import WebsocketServer, WebsocketHandler
class PublishEverythingHandler(WebsocketHandler):
def channel_is_allowed(self, channel_name):
return True
WebsocketServer(
redis=from_url("redis:///", encoding="utf-8", decode_responses=True),
read_timeout=30,
keep_alive_timeout=120,
handler_class=PublishEverythingHandler,
).listen(
host='localhost',
port=8000,
channel_patterns=["[a-z]*"],
)
Have a look at examples/demo.py for an example with the GeoCommandsMixin
added.
Client-Side Usage
WebsocketHandler
The default functionality provides the following interface to the web client (expecting the requests over a websocket connection):
GET keytranslates tohvals keyGET key hkeytranslates tohget key hkeySUB keysubscribes the websocket to a redis channel (using a single redis connection pool for all clients)DEL keyunsubscribes the client from the channelPINGcauses aPONGresponse (to avoid timeouts)
Subclass of WebsocketHandler with GeoCommandsMixin added
By adding the GeoCommandsMixin the web client can use
BBOX left bottom right topto only receive GeoJSON features within this box plus all messages which are not valid GeoJSONPROJECTION epsg:numbercauses all future GeoJSON features to be transformed to the given projection
See examples/demo.py for how to use an extended WebsocketHandler subclass.
Geo commands are currently limited to LineString, Polygon, and Point
geometries.
Note that the projection input and output coordinates will use the traditional GIS order,
that is longitude, latitude for geographic CRS and easting, northing for most projected CRS.
If you want the input and output axis order to strictly follow the definition of the CRS,
use StrictAxisOrderGeoCommandsMixin instead of GeoCommandsMixin.
Build your own protocol
Using the commands listed above for communicating from client to server is
completly optional and determinded by the Mixin classes added to the
WebsocketHandlerBase.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file redis-websocket-api-0.4.4.tar.gz.
File metadata
- Download URL: redis-websocket-api-0.4.4.tar.gz
- Upload date:
- Size: 13.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
842e0e179ae690725192661996325238d817057e185f842c7f10707293db0aad
|
|
| MD5 |
23485643e0f7d4ff7485e53963171d77
|
|
| BLAKE2b-256 |
24ed85ff19a8598bb8357d4c62501beef380452fd2f9dc045771a4b69953fd27
|
File details
Details for the file redis_websocket_api-0.4.4-py3-none-any.whl.
File metadata
- Download URL: redis_websocket_api-0.4.4-py3-none-any.whl
- Upload date:
- Size: 12.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08771ea76a33e5b861661b3f94066fa12edba4768dc8790805e8401bc232f673
|
|
| MD5 |
6440f1923dbba5fca190f60725aa70af
|
|
| BLAKE2b-256 |
60b19825c44b65d7a4cd2355cce77c9681f45305b7aa0c4e63afa1461d38cbb2
|