Metadata-Version: 1.1
Name: screeps
Version: 0.1.2
Summary: Library connecting to the screeps api.
Home-page: https://github.com/TooAngel/python-screeps
Author: Tobias Wilken
Author-email: tooangel@tooangel.de
License: AGPL-3.0
Download-URL: https://pypi.python.org/pypi/screeps
Description: # Screeps library
        
        Library to connect to the screeps API either via REST or websocket.
        Example for using the library can be seen at
        https://github.com/TooAngel/screeps-cli.
        
        
        ## Rest
        
         - `get_me()` Returns the user object for the logged in user
         - `console(command)` Sends the command to the console
        
        ## Websocket
        Websocket connection for fetching the console log
        ```
        from screeps.screeps import Connection
        
        def sysout(message):
            print(message)
        
        conn = Connection(email, password, arguments['--ptr'])
        conn.startWebSocket(sysout)
        ```
        
        
        ## Deploy
        
        `python setup.py sdist upload`
        
Platform: Any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
