Metadata-Version: 1.1
Name: cloudant
Version: 0.1.1
Summary: Python library to use the CloudAnt API
Home-page: https://github.com/dustinmm80/cloudant
Author: Dustin Collins
Author-email: dustinrcollins@gmail.com
License: MIT
Description: cloudant
        ========
        
        Python library to use the CloudAnt API
        
        This library provides CRUD operations on Cloudant databases and documents.
        
        **Example Usage**
        
        	from cloudant.client import Client, Database
        	
        	client = Client('https://testing.cloudant.com, username='testing', password='testing')
        	databases = client.get_all_databases()
        	
        	database = Database('test_db', client)
        	
        	docs = database.get_all_documents()
        	
        	doc = database.create_document(name='Route1', address={'street': '1923 South Street', 'city':'Omaha', 'state': 'NE'})
        	
        	database.delete_document(doc.id, doc.rev)
        	
        The goal is to eventually implement the entire Cloudant API.
        
        The reference API version for this library is 1.0.2.
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
