A faster URL dispatcher for aiohttp web applications. Current version 0.3.1, released July 2024. Replaces aiohttp's built-in URL dispatch with a high-performance alternative. Low release cadence.
pip install aiohttp-fast-url-dispatcherVerified import paths — ran on the pinned version, not inferred.
Create an aiohttp app and replace the default router dispatcher with FastUrlDispatcher.
Upgrade to v0.3.0+
Ensure your app only uses basic route patterns (plain paths, variable parts). Avoid advanced aiohttp routing features.
Call app.router.set_dispatcher(dispatcher) before adding routes, or use dispatcher.add_* methods.
pip install aiohttp-fast-url-dispatcher and use 'from aiohttp_fast_url_dispatcher import FastUrlDispatcher'
Ensure you create the app with 'web.Application()' and then call 'app.router.set_dispatcher(dispatcher)'
No dependency data recorded yet.