Source: syncer Section: python Priority: optional Maintainer: Kali Developers Uploaders: Sophie Brun Build-Depends: debhelper-compat (= 12), dh-python, python3-setuptools, python3-all, python3-sphinx Standards-Version: 4.5.0 Homepage: https://github.com/miyakogi/syncer Vcs-Browser: https://gitlab.com/kalilinux/packages/syncer Vcs-Git: https://gitlab.com/kalilinux/packages/syncer.git Testsuite: autopkgtest-pkg-python Package: python3-syncer Architecture: all Depends: ${python3:Depends}, ${misc:Depends} Suggests: python-syncer-doc Description: async-to-sync converter for Python (Python 3) This package contains an async-to-sync converter for Python. Sometimes (mainly in test) we need to convert asynchronous functions to normal, synchronous functions and run them synchronously. It can be done by ayncio.get_event_loop().run_until_complete(), but it's quite long... . Syncer makes this conversion easy. . - Convert coroutine-function (defined by aync def) to normal (synchronous) function - Run coroutines synchronously - Support both async def and decorator (@asyncio.coroutine) style . This package installs the library for Python 3. Package: python-syncer-doc Architecture: all Section: doc Depends: ${sphinxdoc:Depends}, ${misc:Depends} Description: async-to-sync converter for Python (common documentation) This package contains an async-to-sync converter for Python. Sometimes (mainly in test) we need to convert asynchronous functions to normal, synchronous functions and run them synchronously. It can be done by ayncio.get_event_loop().run_until_complete(), but it's quite long... . Syncer makes this conversion easy. . This is the common documentation package.