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

Last updated: May 18,2024

1. Install "python39-bitarray" package

In this section, we are going to explain the necessary steps to install python39-bitarray on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python39-bitarray

2. Uninstall "python39-bitarray" package

Please follow the steps below to uninstall python39-bitarray on openSuSE Tumbleweed:

$ sudo zypper remove python39-bitarray

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

Information for package python39-bitarray:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python39-bitarray
Version : 2.9.2-1.4
Arch : x86_64
Vendor : openSUSE
Installed Size : 1.0 MiB
Installed : No
Status : not installed
Source package : python-bitarray-2.9.2-1.4.src
Upstream URL : https://github.com/ilanschnell/bitarray
Summary : Efficient Arrays of Booleans
Description :
This module provides an object type which efficiently represents an
array of booleans. Bitarrays are sequence types and behave very
much like usual lists. Eight bits are represented by one byte in a
contiguous block of memory. The user can select between two
representations; little-endian and big-endian.
All of the functionality is implemented in C. Methods for accessing
the machine representation are provided. This can be useful when
bit level access to binary files is required, such as portable
bitmap image files (.pbm).
Also, when dealing with compressed data which uses variable bit
length encoding, you may find this module useful.