Metadata-Version: 1.0
Name: aidsinfo
Version: 1.0
Summary: A Python wrapper for the AIDSinfo drug information API.
Home-page: https://github.com/zachwill/fred
Author: Zach Williams
Author-email: zach@codeforamerica.org
License: BSD
Description: 
        AIDSinfo Python API Wrapper
        ===========================
        
        A Python wrapper for the AIDSinfo drug information API.
        
        AIDSinfo Documentation:  http://www.aidsinfo.nih.gov/Other/rss.aspx
        
        
        Usage
        -----
        
            >>> from aidsinfo import DrugInfo
            >>> info = DrugInfo()
            >>> info.search('abacavir')
            {'abacavir': {'data': 'here'}}
        
            >>> info.search('combivir')
            {'combivir': {'data': 'here'}}
        
            >>> # You can also get back just the XML data.
            ... xml_data = info.search('combivir', output_format=None)
        
        
        Copyright
        ---------
        
        Copyright (c) 2011 Code for America Laboratories.
        
        See LICENSE for details.
        
Keywords: aids,aids info,AIDSinfo,aidsinfo
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
