Metadata-Version: 1.2
Name: mscluster
Version: 1.0.2b0
Summary: Python module to manage Microsoft Cluster Server (MSCS)
Home-page: https://github.com/efficks/pymscluster
Author: François-Xavier Choinière
Author-email: fx@efficks.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/efficks/pymscluster/issues
Project-URL: Source, https://github.com/efficks/pymscluster/
Description-Content-Type: UNKNOWN
Description: Python module for Windows Server Failover Clustering

        =====

        

        This module manage the Windows Server Failover Clustering using the Windows API.

        

        Features

        --------

        * List cluster nodes, resources and group

        * Get node, resource and group status

        * Move group between nodes

        * Start and stop resources and group

        

        Install

        --------

        ::

        

            pip install pymscluster`

        

        Example

        --------

        .. code-block:: python

        

            import mscluster

            c = mscluster.Cluster("Cluster address")

            

            # Print group list

            print(list(c.groups))

            

            r = c.openResource("Resource name")

            r.takeOffline()

            t.takeOnline()

        
Keywords: mscs cluster clustering failover wsfc
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Environment :: Win32 (MS Windows)
Classifier: Operating System :: Microsoft :: Windows
Classifier: Topic :: System :: Clustering
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: ~=3.4
