Metadata-Version: 1.0
Name: linode
Version: 0.0.1
Summary: Python wrapper of the Linode API
Home-page: http://github.com/ghickman/linode
Author: George Hickman
Author-email: george@ghickman.co.uk
License: MIT
Description: # Python Linode API Wrapper
        
        A python wrapper for the Linode's API that attempts to act just like the [Linode API](http://linode.com/api/linode) Docs say it will while being pythonic.
        
        
        ## Installation
        
            pip install linode
        
        
        ## Usage
        
        This is currently alpha software but this example is what I'm aiming for.
        
            from linode import Api
        
        
            linode = Api('your_api_key')
            linode.create(datacenter_id, plan_id, payment_term)
            linode.disk.createfromdistribution(linode_id, distribution_id, label, size, root_pass, root_ssh_key)
        
        
Platform: UNKNOWN
