stan.py icon indicating copy to clipboard operation
stan.py copied to clipboard

Python Asyncio NATS Streaming Client

Results 21 stan.py issues
Sort by recently updated
recently updated
newest added

When running code from basic usage example the following error occurs: ..\..\venv\lib\site-packages\nats\aio\client.py:310: in connect self._flush_queue = asyncio.Queue( self = def __init__(self, *, loop=_marker): if loop is not _marker: raise TypeError(...

Ref : https://github.com/python/cpython/pull/28382 https://github.com/nats-io/stan.py/blob/e0916966d162671e024f49d48748a3a5fa39a0b1/tests/test.py#L10-L11

My environment is : ``` server: nats-streaming:0.21.1-alpine asyncio-nats-client @ asyncio-nats-client-0.11.4.tar.gz asyncio-nats-streaming @ asyncio-nats-streaming-0.4.0.tar.gz python 3.7 ``` My script is : ``` import asyncio from nats.aio.client import Client as NATS from...

I am currently working on some microservices and most of the REST APIs are written in flask. Worker services/subscribers using nats and stan and asyncio. My aim is to have...

When the server in not available for some time, `_close_due_to_ping` is called due to PING failure. This method calls `_close`, which has a following docstring : `"""Removes any present internal...

Greetings to the community, I am currently using NATS streaming service as a means to communicate (stream) packets of data between two `flask` applications. The entire architecture is deployed in...

I've been trying to code my app so it can react to various `max_payload` sizes provided by NATS server properly, including a rewrite from text-based content to a simple binary...

How to include nats with Django application? I'm trying run in from wsgi def get_wsgi_application(): django.setup(set_prefix=False) run_messaging() return WSGIHandler() def run_messaging(): def start_loop(loop): asyncio.set_event_loop(loop) loop.run_until_complete(run(loop)) loop.run_forever() new_loop = asyncio.new_event_loop() t...

Add an example of running a publisher and subscriber in separate files.