Skip to content

KristianLyng/python-varnish

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Python interface for the Varnish management port

Author

Justin Quick <justquick@gmail.com>,

Version

0.1

pip install python-varnish==0.1.1

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') )
manager.run('purge.url', '^/$')
manager.close()

About

Simple Python interface for the Varnish management port

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published