How to Install and Uninstall python3-roundrobin Package on Kali Linux

Last updated: November 07,2024

1. Install "python3-roundrobin" package

Learn how to install python3-roundrobin on Kali Linux

$ sudo apt update $ sudo apt install python3-roundrobin

2. Uninstall "python3-roundrobin" package

In this section, we are going to explain the necessary steps to uninstall python3-roundrobin on Kali Linux:

$ sudo apt remove python3-roundrobin $ sudo apt autoclean && sudo apt autoremove

3. Information about the python3-roundrobin package on Kali Linux

Package: python3-roundrobin
Source: python-roundrobin
Version: 0.0.4-3
Installed-Size: 26
Maintainer: Sandro Tosi
Architecture: all
Depends: python3:any
Size: 4364
SHA256: c1b8d36a6edfee7f81d9e33332e394d76ba8c6c1f86e08422575846b257bbeef
SHA1: 27cda1980323a62bf416ab019e30dba937cc9dd7
MD5sum: 72227e6e2badf777ea80759be0e42e33
Description: collection of roundrobin utilities
This is rather small collection of round robin utilities.
.
Some examples:
.
```
>>> import roundrobin
>>> get_roundrobin = roundrobin.basic(["A", "B", "C"])
>>> ''.join([get_roundrobin() for _ in range(7)])
'ABCABCA'
>>> # weighted round-robin balancing algorithm as seen in LVS
>>> get_weighted = roundrobin.weighted([("A", 5), ("B", 1), ("C", 1)])
>>> ''.join([get_weighted() for _ in range(7)])
'AAAAABC'
>>> # smooth weighted round-robin balancing algorithm as seen in Nginx
>>> get_weighted_smooth = roundrobin.smooth([("A", 5), ("B", 1), ("C", 1)])
>>> ''.join([get_weighted_smooth() for _ in range(7)])
'AABACAA'
```
Description-md5:
Homepage: https://github.com/linnik/roundrobin
Section: python
Priority: optional
Filename: pool/main/p/python-roundrobin/python3-roundrobin_0.0.4-3_all.deb