Hussain
unread,Jan 14, 2017, 7:21:13 AM1/14/17Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to aio-...@googlegroups.com
Hi,
@Usman:
It is not worth it to make it both sync and async . Most external
software already has regular wrappers (literally most common OS software
has a Python wrapper).
Building up a suite of reliable async-wrappers for asyncio/Python will
actually make Python-async more approachable for situations where async
makes a lot of sense (lots of common web functionality, especially
things like DB-calls, make more sense under async).
I do like the format of calling the libs: aio{name} , as that makes it
easy to find/discover on github/pypi .
If you need some advice for which type of wrappers you might be
interested in writing, go see which popular sync wrappers exist on
github/pypi and if they don't have an async wrapper (but an async
wrapper makes *sense*) then it could be worth writing one for that
specific software.
Regards,