[ Источник: python-roundrobin ]
Пакет: python3-roundrobin (0.0.4-2)
Ссылки для python3-roundrobin
Ресурсы Debian:
- Сообщения об ошибках
- Developer Information
- Debian журнал изменений
- Файл авторских прав
- Отслеживание заплат Debian
Исходный код python-roundrobin:
- [python-roundrobin_0.0.4-2.dsc]
- [python-roundrobin_0.0.4.orig.tar.gz]
- [python-roundrobin_0.0.4-2.debian.tar.xz]
Сопровождающие:
Внешние ресурсы:
- Сайт [github.com]
Подобные пакеты:
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' ```
Другие пакеты, относящиеся к python3-roundrobin
|
|
|
|
-
- dep: python3
- interactive high-level object-oriented language (default python3 version)
Загрузка python3-roundrobin
Архитектура | Размер пакета | В установленном виде | Файлы |
---|---|---|---|
all | 4,2 Кб | 26,0 Кб | [список файлов] |