How to Install and Uninstall python312-cstruct Package on openSuSE Tumbleweed

Last updated: July 07,2024

1. Install "python312-cstruct" package

Learn how to install python312-cstruct on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install python312-cstruct

2. Uninstall "python312-cstruct" package

Here is a brief guide to show you how to uninstall python312-cstruct on openSuSE Tumbleweed:

$ sudo zypper remove python312-cstruct

3. Information about the python312-cstruct package on openSuSE Tumbleweed

Information for package python312-cstruct:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : python312-cstruct
Version : 5.3-1.4
Arch : noarch
Vendor : openSUSE
Installed Size : 177.5 KiB
Installed : No
Status : not installed
Source package : python-cstruct-5.3-1.4.src
Upstream URL : https://github.com/andreax79/python-cstruct
Summary : C-style structs for Python
Description :
Convert C struct definitions into Python classes with methods for
serializing/deserializing. The usage is very simple: create a class
subclassing cstruct.CStruct and add a C struct definition as a
string in the struct field. The C struct definition is parsed at
runtime and the struct format string is generated. The class offers
the method "unpack" for deserializing a string of bytes into a
Python object and the method "pack" for serializing the values into
a string.