Metadata-Version: 2.1
Name: factorio-rcon-py
Version: 0.0.2
Summary: A simple factorio RCON client
Home-page: https://github.com/mark9064/factorio-rcon-py
Author: mark9064
License: UNKNOWN
Description: # factorio-rcon-py
        
        A simple factorio RCON client
        
        ## Install
        
        pip3 install factorio-rcon-py
        
        ## Usage
        
        Example:
        ```python
        import factorio_rcon
        
        client = factorio_rcon.RCONClient("127.0.0.1", 12345, "mypassword")
        response = client.send_command("/help")
        ```
        
        Return values:
        
        String if data was returned, else None
        
        Types:
        - ip - string
        - port - int
        - password - string
        
        Raised exceptions:
        
        All exceptions are raised as ConnectionError or a subset of it. Exceptions can be raised due a refused connection (wrong ip/port), incorrect password or the server going down.
        
        
        ## License
        
        GPLV3
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Natural Language :: English
Description-Content-Type: text/markdown
