How to Install and Uninstall python3-h11.noarch Package on CentOS Stream 8

Last updated: June 30,2024

1. Install "python3-h11.noarch" package

This guide covers the steps necessary to install python3-h11.noarch on CentOS Stream 8

$ sudo dnf update $ sudo dnf install python3-h11.noarch

2. Uninstall "python3-h11.noarch" package

This is a short guide on how to uninstall python3-h11.noarch on CentOS Stream 8:

$ sudo dnf remove python3-h11.noarch $ sudo dnf autoremove

3. Information about the python3-h11.noarch package on CentOS Stream 8

Last metadata expiration check: 4:27:44 ago on Sun Feb 25 03:03:59 2024.
Available Packages
Name : python3-h11
Version : 0.13.0
Release : 1.el8
Architecture : noarch
Size : 105 k
Source : python-h11-0.13.0-1.el8.src.rpm
Repository : epel
Summary : A pure-Python, bring-your-own-I/O implementation of HTTP/1.1
URL : https://github.com/python-hyper/h11
License : MIT
Description : This is a little HTTP/1.1 library written from scratch in Python, heavily
: inspired by hyper-h2. It is a "bring-your-own-I/O" library; h11 contains no IO
: code whatsoever. This means you can hook h11 up to your favorite network API,
: and that could be anything you want: synchronous, threaded, asynchronous, or
: your own implementation of RFC 6214 -- h11 will not judge you. This also means
: that h11 is not immediately useful out of the box: it is a toolkit for building
: programs that speak HTTP, not something that could directly replace requests or
: twisted.web or whatever. But h11 makes it much easier to implement something
: like requests or twisted.web.