How to Install and Uninstall python3-starlette Package on Kali Linux

Last updated: May 03,2024

1. Install "python3-starlette" package

This is a short guide on how to install python3-starlette on Kali Linux

$ sudo apt update $ sudo apt install python3-starlette

2. Uninstall "python3-starlette" package

Please follow the steps below to uninstall python3-starlette on Kali Linux:

$ sudo apt remove python3-starlette $ sudo apt autoclean && sudo apt autoremove

3. Information about the python3-starlette package on Kali Linux

Package: python3-starlette
Source: starlette
Version: 0.31.1-1
Installed-Size: 283
Maintainer: Piotr Ożarowski
Architecture: all
Depends: python3-anyio, python3-typing-extensions | python3-supported-min (>= 3.10), python3:any
Recommends: python3-uvicorn | python3-daphne, python3-aiofiles, python3-h11, python3-itsdangerous, python3-jinja2, python3-multipart, python3-yaml
Suggests: python3-databases
Breaks: python3-fastapi (<< 0.91.0-1~)
Size: 48908
SHA256: 9bcfcffdb09fa847655a6e2961f274ce33f964c4ec0a8ae251178fe4d885f7b5
SHA1: 62b95b3a0382dd1d313060742904a8b6d0941c8a
MD5sum: 2f73fbfe3c35c0751bcd222ffdbe0465
Description: ASGI library ideal for building high performance asyncio services
Starlette is a lightweight ASGI (Asynchronous Server Gateway Interface)
framework/toolkit, which is ideal for building high performance asyncio
services.
.
It is production-ready, and gives you the following:
.
* Seriously impressive performance.
* WebSocket support.
* In-process background tasks.
* Startup and shutdown events.
* Test client built on `httpx`.
* CORS, GZip, Static Files, Streaming responses.
* Session and Cookie support.
* 100% test coverage.
* 100% type annotated codebase.
* Zero hard dependencies.
.
Example:
.
from starlette.applications import Starlette
from starlette.responses import JSONResponse
from starlette.routing import Route
.
async def homepage(request):
return JSONResponse({'hello': 'world'})
.
app = Starlette(debug=True, routes=[
Route('/', homepage),
])
Description-md5:
Homepage: https://www.starlette.io/
Section: python
Priority: optional
Filename: pool/main/s/starlette/python3-starlette_0.31.1-1_all.deb