Python async support #345
-
Hey, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @ronenlinx, I'm sorry, I know this is probably late, I somehow missed your post. Will respond anyway in case other people stumble upon this discussion thread. If you're interested in switching completely to asyncio, note that I released https://github.com/arangodb/python-arango-async and it is stable (that means there will be no drastic API changes). The documentation covers everything, and I made a "real-world" app to serve as a small tutorial: https://github.com/apetenchea/python-arango-async-demo If you're interested to just wrap some bits of synchronous python-arango code in your application, I wrote about the recommended way to do that in this section of the documentation: https://python-arango-async.readthedocs.io/en/latest/migration.html#mixing-sync-and-async |
Beta Was this translation helpful? Give feedback.
Hi @ronenlinx,
I'm sorry, I know this is probably late, I somehow missed your post. Will respond anyway in case other people stumble upon this discussion thread.
If you're interested in switching completely to asyncio, note that I released https://github.com/arangodb/python-arango-async and it is stable (that means there will be no drastic API changes). The documentation covers everything, and I made a "real-world" app to serve as a small tutorial: https://github.com/apetenchea/python-arango-async-demo
If you're interested to just wrap some bits of synchronous python-arango code in your application, I wrote about the recommended way to do that in this section of the documentation: https:/…