Metadata-Version: 1.0
Name: rHLDS
Version: 0.1.2
Summary: This library allows you to use Half-Life RCON protocol
Home-page: https://github.com/chmod1/rHLDS.git
Author: chmod
Author-email: root@chmod.ga
License: MIT
Description: # rHLDS
        This library allows you to use Half-Life RCON protocol.
        
        ## REQUIREMENTS
        Python 3+
        
        ## INSTALLATION
        ```
        $ sudo pip3 install rHLDS
        ```
        Or from git:
        ```
        $ git clone https://github.com/chmod1/rHLDS.git
        $ cd rHLDS
        $ sudo python3 setup.py install
        ```
        
        ## USING
        ```python
        from rHLDS import Console
        
        # Default port 27015
        srv = Console(host='127.0.0.1', password='somePass')
        # If you need another port
        srv = Cconsole(host='127.0.0.1', port=27016, password='somePass')
        
        # Connect to server
        srv.connect()
        
        # Execute any command
        print(srv.execute("status"))
        
        # Сlose connection
        srv.disconnect()
        ```
        
        # LICENSE
        [MIT License](http://www.opensource.org/licenses/MIT)
        
Keywords: HLDS,RCON,Half-Life,hl,Counter-Strike,cstrike,cs
Platform: UNKNOWN
