How to Install and Uninstall python3-aiostream.noarch Package on Fedora 34

Last updated: September 28,2024

1. Install "python3-aiostream.noarch" package

Please follow the guidelines below to install python3-aiostream.noarch on Fedora 34

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

2. Uninstall "python3-aiostream.noarch" package

Please follow the guidance below to uninstall python3-aiostream.noarch on Fedora 34:

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

3. Information about the python3-aiostream.noarch package on Fedora 34

Last metadata expiration check: 1:00:50 ago on Tue Sep 6 14:10:38 2022.
Available Packages
Name : python3-aiostream
Version : 0.4.1
Release : 5.fc34
Architecture : noarch
Size : 58 k
Source : python-aiostream-0.4.1-5.fc34.src.rpm
Repository : fedora
Summary : Generator-based operators for asynchronous iteration
URL : https://github.com/vxgmichel/aiostream
License : GPLv3
Description : aiostream provides a collection of stream operators that can be combined
: to create asynchronous pipelines of operations.
:
: It can be seen as an asynchronous version of itertools, although some
: aspects are slightly different. Essentially, all the provided operators
: return a unified interface called a stream.
:
: A stream is an enhanced asynchronous iterable providing the following
: features:
:
: - Operator pipe-lining - using pipe symbol |
: - Repeatability - every iteration creates a different iterator
: - Safe iteration context - using async with and the stream method
: - Simplified execution - get the last element from a stream using await
: - Slicing and indexing - using square brackets []
: - Concatenation - using addition symbol +