How to Install and Uninstall python310-aiocsv Package on openSuSE Tumbleweed

Last updated: July 05,2024

1. Install "python310-aiocsv" package

Please follow the instructions below to install python310-aiocsv on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python310-aiocsv

2. Uninstall "python310-aiocsv" package

In this section, we are going to explain the necessary steps to uninstall python310-aiocsv on openSuSE Tumbleweed:

$ sudo zypper remove python310-aiocsv

3. Information about the python310-aiocsv package on openSuSE Tumbleweed

Information for package python310-aiocsv:
-----------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python310-aiocsv
Version : 1.3.1-1.1
Arch : x86_64
Vendor : openSUSE
Installed Size : 84.5 KiB
Installed : No
Status : not installed
Source package : python-aiocsv-1.3.1-1.1.src
Upstream URL : https://github.com/MKuranowski/aiocsv
Summary : Asynchronous CSV reading/writing in Python
Description :
Asynchronous CSV reading and writing
AsyncReader & AsyncDictReader accept any object that has a read(size: int) coroutine,
which should return a string.
AsyncWriter & AsyncDictWriter accept any object that has a write(b: str) coroutine.
Reading is implemented using a custom CSV parser, which should behave exactly like
the CPython parser.
Writing is implemented using the synchronous csv.writer and csv.DictWriter objects -
the serializers write data to a StringIO, and that buffer is then rewritten to the
underlying asynchronous file.