Metadata-Version: 1.1
Name: ctrldaemon
Version: 0.2
Summary: Service command wrapper for Python.
Home-page: http://www.yograterol.me
Author: Yohan Graterol
Author-email: yograterol@fedoraproject.org
License: BSD License
Download-URL: https://github.com/yograterol/python-ctrldaemon
Description: python-ctrldaemon
        =================
        
        *Service command wrapper for Python.*
        
        Usage
        -------------------------------
        
        **Create object**
        
        ```python
        from ctrldaemon import ControlDaemon
        obj = ControlDaemon("service") # Example "httpd" (Apache)
        ```
        
        **Start service**
        
        ```python
        from ctrldaemon import ControlDaemon
        obj = ControlDaemon("service") # Example "httpd" (Apache)
        obj.start()
        ```
        
        **Stop service**
        
        ```python
        from ctrldaemon import ControlDaemon
        obj = ControlDaemon("service") # Example "httpd" (Apache)
        obj.stop()
        ```
        
        **Restart service**
        
        ```python
        from ctrldaemon import ControlDaemon
        obj = ControlDaemon("service") # Example "httpd" (Apache)
        obj.restart()
        ```
        
        **Memory**
        
        ```python
        from ctrldaemon import ControlDaemon
        obj = ControlDaemon("service") # Example "httpd" (Apache)
        obj.get_memory_usage()
        ```
        
Platform: UNKNOWN
