-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider moving to asyncio
before the library gets too large
#18
Comments
this is our attempt to move to concurrency before the library goes out of hand there are a few exception at the moment around typer not being able to support async/await we can work around that when they support it #18
See also streaming responses for long poll calls to the API. |
moved to explicitly closing the client upon each requestREFS #18
pending running a full test this changes all the test calls to be async, we recomend merging this branch into the dto-implementation branch and let the tests run against the server to see if the tests pass REFS #18
This in principle is complete, however see commit 620b652 as For now we have a wrapper class adapted from @gilcu2's comment on the thread. This issue is being closed for now, we should refactor the cli implementation as |
We're getting to a stage where the library design and patterns are maturing. Tests are running consistently and passing as expected.
It would thus be time to full flesh out the entire library before we move into some enterprise features and use this in integrations and products.
Most of Anomaly's projects have moved to using
asyncio
and it would thus be unwise to not make this library haveasyncio
support. We would have to consider:The text was updated successfully, but these errors were encountered: