How To Install python-quart-doc on Kali Linux

In this tutorial we learn how to install python-quart-doc on Kali Linux. python-quart-doc is Python ASGI web microframework with the same API as Flask (documentation)

Introduction

In this tutorial we learn how to install python-quart-doc on Kali Linux.

What is python-quart-doc

python-quart-doc is:

Quart is a Python ASGI web microframework. It is intended to provide the easiest way to use asyncio functionality in a web context, especially with existing Flask apps. This is possible as the Quart API is a superset of the Flask API.

Quart aims to be a complete web microframework, as it supports HTTP/1.1, HTTP/2 and websockets. Quart is very extendable and has a number of known extensions and works with many of the Flask extensions.

Quart supports the full ASGI 3.0 specification as well as the websocket response and HTTP/2 server push extensions. For those of you familiar with Flask, Quart extends the Flask API by adding support for:

  • HTTP/1.1 request streaming
  • Websockets
  • HTTP/2 server push

This package contains the documentation and examples.

There are three methods to install python-quart-doc on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install python-quart-doc Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install python-quart-doc using apt-get by running the following command:

sudo apt-get -y install python-quart-doc

Install python-quart-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python-quart-doc using apt by running the following command:

sudo apt -y install python-quart-doc

Install python-quart-doc Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install python-quart-doc using aptitude by running the following command:

sudo aptitude -y install python-quart-doc

How To Uninstall python-quart-doc on Kali Linux

To uninstall only the python-quart-doc package we can use the following command:

sudo apt-get remove python-quart-doc

Uninstall python-quart-doc And Its Dependencies

To uninstall python-quart-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove python-quart-doc

Remove python-quart-doc Configurations and Data

To remove python-quart-doc configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge python-quart-doc

Remove python-quart-doc configuration, data, and all of its dependencies

We can use the following command to remove python-quart-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python-quart-doc

Dependencies

python-quart-doc have the following dependencies:

References

Summary

In this tutorial we learn how to install python-quart-doc package on Kali Linux using different package management tools: apt, apt-get and aptitude.