How to Install and Uninstall python-odict Package on openSUSE Leap

Last updated: February 02,2025

1. Install "python-odict" package

Please follow the instructions below to install python-odict on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python-odict

2. Uninstall "python-odict" package

Please follow the steps below to uninstall python-odict on openSUSE Leap:

$ sudo zypper remove python-odict

3. Information about the python-odict package on openSUSE Leap

Information for package python-odict:
-------------------------------------
Repository : Main Repository
Name : python-odict
Version : 1.5.1-bp153.1.13
Arch : noarch
Vendor : openSUSE
Installed Size : 51,1 KiB
Installed : No
Status : not installed
Source package : python-odict-1.5.1-bp153.1.13.src
Summary : Ordered dictionary
Description :
Dictionary in which the *insertion* order of items is preserved (using an
internal double linked list). In this implementation replacing an existing
item keeps it at its original position.
Internal representation: values of the dict::
[pred_key, val, succ_key]
The sequence of elements uses as a double linked list. The ``links`` are dict
keys. ``self.lh`` and ``self.lt`` are the keys of first and last element
inseted in the odict. In a C reimplementation of this data structure, things
can be simplified (and speed up) a lot if given a value you can at the same
time find its key. With that, you can use normal C pointers.