🚧 [WIP] This project is still under development.
gerrit.py provides a simple interface to interact with Gerrit Code Review via the REST API.
Gerrit Version Compatibility
Install from source code
python setup.py install
from gerrit.gerrit import Gerrit
from gerrit.config import Config
g = Gerrit('gerrit.example.com', 'username', 'password')
config = Config(g)
success, version = config.get_version()
print success
# True
print version
# 2.11.10
This project is inspired by CBitLabs/BitBucket-api.