[ Pakiet źródłowy: python-roundrobin ]
Pakiet: python3-roundrobin (0.0.4-3)
Odnośniki dla python3-roundrobin
Zasoby systemu Debian:
- Raporty o błędach
- Developer Information
- Dziennik zmian w systemie Debian
- Informacje nt. praw autorskich
- Śledzenie łatek systemu Debian
Pobieranie pakietu źródłowego python-roundrobin:
- [python-roundrobin_0.0.4-3.dsc]
- [python-roundrobin_0.0.4.orig.tar.gz]
- [python-roundrobin_0.0.4-3.debian.tar.xz]
Opiekun:
Zasoby zewnętrzne:
- Strona internetowa [github.com]
Podobne pakiety:
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' ```
Inne pakiety związane z python3-roundrobin
|
|
|
|
-
- dep: python3
- Interaktywny, wysokopoziomowy i obiektowy język programowania (domyślna wersja Python 3)
Pobieranie python3-roundrobin
Architektura | Rozmiar pakietu | Rozmiar po instalacji | Pliki |
---|---|---|---|
all | 4,3 KiB | 26,0 KiB | [lista plików] |