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

Last updated: September 20,2024

1. Install "python311-aiocsv" package

This guide covers the steps necessary to install python311-aiocsv on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python311-aiocsv

2. Uninstall "python311-aiocsv" package

Please follow the guidelines below to uninstall python311-aiocsv on openSuSE Tumbleweed:

$ sudo zypper remove python311-aiocsv

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

Information for package python311-aiocsv:
-----------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python311-aiocsv
Version : 1.3.1-1.1
Arch : x86_64
Vendor : openSUSE
Installed Size : 105.2 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.