Metadata-Version: 1.1
Name: pyvarnish
Version: 1.1.0
Summary: Lighweight Python interface for Varnish Manager
Home-page: https://github.com/savsgio/pyvarnish
Author: Sergio Andres Virviescas Santana
Author-email: developersavsgio@gmail.com
License: UNKNOWN
Description: PyVarnish
        =========
        
        Lighweight Python interface for Varnish Manager
        
        Tested with Varnish 4.x.x and 5.x.x
        
        ### Instalation:
        ```bash
        pip install pyvarnish
        ```
        
        ### Example:
        
        ```python
        # 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](https://github.com/justquick/python-varnish) library
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Topic :: Utilities
