Skip to main content

Simple Python interface for the Varnish management port

Project description

Author:

Justin Quick <justquick@gmail.com>, Sandy Walsh <github@darksecretsoftware.com>

Version:
0.2
pip install python-varnish==0.2.2

If you are running a version of varnish older than 3.0 then install python-varnish==0.1.2 instead.

Varnish is a state-of-the-art, high-performance HTTP accelerator. For more information checkout Varnish Site

Varnish provides a simple telnet management interface for doing things like:

  • reloading configurations

  • purging URLs from cache

  • view statistics

  • start and stop the server

This Python API takes full advantage of the available commands and can run across multiple Varnish instances. Here are the features of this python module (compared to python-varnishadm)

  • Uses telnetlib instead of raw sockets

  • Implements threading module

  • Can run commands across multiple Varnish instances

  • More comprehensive methods, closely matching the management API (purge_*, vcl_*, etc.)

  • Unittests

Example:

manager = VarnishManager(('server1:6082', 'server2:6082'), 'secret_file_content')
manager.run('ping')
manager.run('ban.url ^/articles/$')
manager.run('ban.list')
manager.run('purge.url', 'http://mydomain.com/articles/.*')
manager.close()

Testing:

python runtests.py

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-varnishadm-0.2.2.tar.gz (6.7 kB view hashes)

Uploaded Source

Built Distribution

python_varnishadm-0.2.2-py2-none-any.whl (8.1 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page