How to Install and Uninstall python3-bitarray Package on openSUSE Leap

Last updated: June 29,2024

1. Install "python3-bitarray" package

Please follow the instructions below to install python3-bitarray on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python3-bitarray

2. Uninstall "python3-bitarray" package

Please follow the instructions below to uninstall python3-bitarray on openSUSE Leap:

$ sudo zypper remove python3-bitarray

3. Information about the python3-bitarray package on openSUSE Leap

Information for package python3-bitarray:
-----------------------------------------
Repository : Main Repository
Name : python3-bitarray
Version : 1.2.1-bp155.2.11
Arch : x86_64
Vendor : openSUSE
Installed Size : 460.8 KiB
Installed : No
Status : not installed
Source package : python-bitarray-1.2.1-bp155.2.11.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.