すべてのオプション
bookworm  ] [  trixie  ] [  sid  ]
[ ソース: python-roundrobin  ]

パッケージ: python3-roundrobin (0.0.4-3)

python3-roundrobin に関するリンク

Screenshot

Debian の資源:

python-roundrobin ソースパッケージをダウンロード:

メンテナ:

外部の資源:

類似のパッケージ:

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 関連パッケージ

  • 依存
  • 推奨
  • 提案
  • enhances

python3-roundrobin のダウンロード

すべての利用可能アーキテクチャ向けのダウンロード
アーキテクチャ パッケージサイズ インストールサイズ ファイル
all 4.3 kB26.0 kB [ファイル一覧]