Metadata-Version: 1.1
Name: ChemSpiPy
Version: 1.0.1
Summary: A simple Python wrapper around the ChemSpider Web Services.
Home-page: https://github.com/mcs07/ChemSpiPy
Author: Matt Swain
Author-email: m.swain@me.com
License: MIT
Description: ChemSpiPy
        =========
        
        .. image:: http://img.shields.io/pypi/v/ChemSpiPy.svg?style=flat
            :target: https://pypi.python.org/pypi/ChemSpiPy
        
        .. image:: http://img.shields.io/pypi/l/ChemSpiPy.svg?style=flat
            :target: https://github.com/mcs07/ChemSpiPy/blob/master/LICENSE
        
        .. image:: http://img.shields.io/travis/mcs07/ChemSpiPy/master.svg?style=flat
            :target: https://travis-ci.org/mcs07/ChemSpiPy
        
        .. image:: http://img.shields.io/coveralls/mcs07/ChemSpiPy/master.svg?style=flat
            :target: https://coveralls.io/r/mcs07/ChemSpiPy?branch=master
        
        ChemSpiPy provides a way to interact with ChemSpider in Python. It allows chemical searches, chemical file downloads,
        depiction and retrieval of chemical properties::
        
            >>> from chemspipy import ChemSpider
            >>> cs = ChemSpider('<YOUR-SECURITY-TOKEN>')
            >>> c1 = cs.get_compound(236)  # Specify compound by ChemSpider ID
            >>> c2 = cs.search('benzene')  # Search using name, SMILES, InChI, InChIKey, etc.
        
        Installation
        ------------
        
        Install ChemSpiPy using pip::
        
            pip install chemspipy
        
        Alternatively, try one of the other `installation options`_.
        
        Documentation
        -------------
        
        Full documentation is available at http://chemspipy.readthedocs.org.
        
        Contribute
        ----------
        
        -  Feature ideas and bug reports are welcome on the `Issue Tracker`_.
        -  Fork the `source code`_ on GitHub, make changes and file a pull request.
        
        License
        -------
        
        ChemSpiPy is licensed under the `MIT license`_.
        
        This project was originally forked from `ChemSpiPy by Cameron Neylon`_, which has been released into the public domain.
        
        .. _`installation options`: http://chemspipy.readthedocs.org/en/latest/guide/install.html
        .. _`source code`: https://github.com/mcs07/ChemSpiPy
        .. _`Issue Tracker`: https://github.com/mcs07/ChemSpiPy/issues
        .. _`MIT license`: https://github.com/mcs07/ChemSpiPy/blob/master/LICENSE
        .. _`ChemSpiPy by Cameron Neylon`: https://github.com/cameronneylon/ChemSpiPy
        
        
        
        
        
Keywords: chemistry cheminformatics chemspider rsc rest api
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Topic :: Scientific/Engineering :: Chemistry
Classifier: Topic :: Software Development :: Libraries :: Python Modules
