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

Last updated: September 18,2024

1. Install "python39-aiocsv" package

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

$ sudo zypper refresh $ sudo zypper install python39-aiocsv

2. Uninstall "python39-aiocsv" package

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

$ sudo zypper remove python39-aiocsv

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

Information for package python39-aiocsv:
----------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python39-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.