
Product
Introducing Socket MCP for Claude Desktop
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
aiohttp-utils
.. image:: https://badgen.net/pypi/v/aiohttp-utils :target: https://pypi.org/project/aiohttp-utils/ :alt: Latest version
.. image:: https://badgen.net/travis/sloria/aiohttp-utils :target: https://travis-ci.org/sloria/aiohttp-utils :alt: Travis-CI
aiohttp-utils provides handy utilities for building aiohttp.web <https://aiohttp.readthedocs.io/>
_ applications.
Everything is optional. You can use as much (or as little) of this toolkit as you need.
.. code-block:: python
from aiohttp import web
from aiohttp_utils import Response, routing, negotiation
app = web.Application(router=routing.ResourceRouter())
# Method-based handlers
class HelloResource:
async def get(self, request):
name = request.GET.get('name', 'World')
return Response({
'message': 'Hello ' + name
})
app.router.add_resource_object('/', HelloResource())
# Content negotiation
negotiation.setup(
app, renderers={
'application/json': negotiation.render_json
}
)
::
$ pip install aiohttp-utils
Full documentation is available at https://aiohttp-utils.readthedocs.io/.
MIT licensed. See the bundled LICENSE <https://github.com/sloria/aiohttp-utils/blob/master/LICENSE>
_ file for more details.
FAQs
Handy utilities for aiohttp.web applications.
We found that aiohttp-utils demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.