Does RxPY provide a facility for converting async iterators into Observables?
For example, if I have:
async foo():
for x in range(5):
result = await get_data_from_somewhere(x)
yield result
Is there a straightforward way of converting this into an Observable? (Obviously, I would only expect this to work when running using the AsyncIOScheduler).
If this isn't available, can I suggest that this would be a welcome feature?
Does RxPY provide a facility for converting async iterators into Observables?
For example, if I have:
Is there a straightforward way of converting this into an Observable? (Obviously, I would only expect this to work when running using the
AsyncIOScheduler).If this isn't available, can I suggest that this would be a welcome feature?