Metadata-Version: 1.0
Name: fastbill
Version: 0.1.3
Summary: A thin python wrapper for the fastbill API
Home-page: http://github.com/stylight/python-fastbill
Author: Dimitar Roustchev
Author-email: dimitar.roustchev@stylight.com
License: MIT License
Description: # python-fastbill
        
        Super thin Python wrapper for Fastbill's HTTP API developed by
        [Stylight](http://www.stylight.de/).
        
        Limitations:
        
        * only supports JSON payloads
        * doesn't (overly) check for consistency of responses
        * doesn't convert date strings to datetime objects
        
        Dependencies:
        
        * requests
        
        ## Installation
        
        	pip install fastbill
        
        
        ## Usage
        
            # Construct the api client
        
            client = FastbillAPI('fastbill_user', 'fastbill_key')
        
            # Make requests, e.g. service customer.create
        
            client.customer_create(data={})
        
            # Search for customer, subscriptions, etc...
        
            for customer in client.customer_get(filter={'city': 'Munich'}):
                print customer
        
            # But you can also see the full result
        
            result = client.customer_get(filter={'city': 'Munich'})
            print result.keys()
        
            # Will give you 'CUSTOMERS'
        
Keywords: fastbill api
Platform: UNKNOWN
