pyvarnish

Lighweight Python interface for Varnish Manager


Keywords
python, varnish, varnish-cache
License
GPL-3.0
Install
pip install pyvarnish==1.0.2

Documentation

PyVarnish

Lighweight Python interface for Varnish Manager

Tested with Varnish 4.x.x and 5.x.x

Instalation:

pip install pyvarnish

Example:

# Default port is 6082 and secret is an optional parameter
  manager = VarnishManager(host="varnish.example.es", port=80, secret="MySecret")
  manager.ping()
  manager.ban("req.http.host ~ www.example.es")
  manager.ban_url('^/secret/$')
  manager.ban_list()
  manager.command("<your custom command>")
  manager.quit()

Others:

Based on justquick/python-varnish library