Aymeric Augustin
Aymeric Augustin
Fix #364.
Based on a suggestion by @cjerdonek in #296, I'm creating this new issue for clarity. When receiving a fragmented message, it might be desireable to obtain the fragments without reassembling,...
(from https://github.com/aaugustin/websockets/pull/544#issuecomment-505837262) Since #528 websockets follows redirects. I believe that this feature is incompatible with connection overrides (either with host + port or with sock). If you need to control...
I'm thinking of something along the lines of: ```python websocket.get_metrics() { "lifetime": 23.780, "latency": 0.423, "frames": { "rcvd": { "text": 93, "pong": 17, }, "rcvd": { "text": 1, "ping": 17,...
EDIT - until this is implemented, the workaround consists in creating a socket connected to a socks proxy e.g. with https://pypi.org/project/python-socks/, then `connect(sock=...)`. See https://github.com/python-websockets/websockets/issues/475#issuecomment-1268504779 for details.
Hello, Most users of django-overextends don't need sphinx-me because they won't build the documentation. https://packaging.python.org/requirements/#install-requires states that `install_requires` "should be used to specify what a project **minimally** needs to run...
Django's [on_commit](https://docs.djangoproject.com/en/1.10/topics/db/transactions/#django.db.transaction.on_commit) hook seems perfectly appropriate for delaying `enqueue()` until the database transaction commits. Django 1.9+ maintains its own per-database-connection (database connections are thread-local) queue of functions to run when...
A user reported to me that changes disappear mysteriously when she edits a page in the Wagtail CMS, which relies on hallo.js for editing rich text fields. Eventually I noticed...