Skip to content

A load balancer implementation from scratch in python

License

Notifications You must be signed in to change notification settings

AryanSharma5/pyalb

Repository files navigation

pyalb

PyPI version Supported Python versions Build Status

pyalb is a simple http load balancer. It supports following routing algorithms

  • Round Robbin
  • Random Selection

Installation

Install from PyPI:

$ pip install pyalb

or:

$ git clone https://github.com/AryanSharma5/pyalb.git
$ cd pyalb
$ python -m pip install .

or install in editable version:

$ git clone https://github.com/AryanSharma5/pyalb.git
$ cd pyalb
$ python -m pip install -r requirements-dev.txt

Usage

Todo

License

pyalb is released under the MIT License. See the LICENSE file for more details.