Metadata-Version: 1.1
Name: hyppy
Version: 0.1.0
Summary: HAPI wrapper and tools for the online game Hyperiums
Home-page: https://github.com/Hypex/hyppy.git
Author: Ross Masters
Author-email: ross@rossmasters.com
License: MIT
Description: Hyppy
        =====
        
        A Python interface for the `Hyperiums <http://www.hyperiums.com>`_ API (HAPI).
        
        Aims to provide:
        
        -   A HAPI wrapper, allowing multiple connections (i.e. per user, per game),
        -   Parsing tools for daily list exports,
        -   Functions and formulae for some of the game's mechanics.
        
        MIT licensed.
        
        Installation and quickstart
        ---------------------------
        
        To install::
        
            pip install hyppy
        
        Using the HAPI::
        
            from hyppy.hapi import HAPI
        
            hapi = HAPI('Hyperiums6')
        
            # Get a list of games
            print hapi.games()
        
            # Password authentication for list downloads
            hapi.authenticate_basic('loginname', 'password')
        
            # Download today's planet list for this game
            hapi.download('planets', './planets.txt.gz')
        
            # HAPI key authentication for everything else
            hapi.authenticate_hapi('loginname', 'hapikey')
            
            # Get all player's planets
            print hapi.planet()
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Games/Entertainment :: Real Time Strategy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
