WIP: migrate to asyncio and httpx by L0ric0 · Pull Request #998 · python-gitlab/python-gitlab
starting to migrate to async while staying compatible to the syncronous versions.
TODO:
- rewrite GitlabList init to be async compatible
- find all functions that need a async_ version
which funktions are suposed to be called by the user? if possible i would like to keep all internal funktions async and run the functions that have to be sync with run_until_complete()
would it be better to have a centrel event_loop instead of getting it with get_event_loop every time and if so where would i put it?
fix #945