Metadata-Version: 1.1
Name: ols-client
Version: 0.0.7
Summary: A Python client for the EBI Ontology Lookup Service RESTful API
Home-page: https://github.com/cthoyt/ols-client
Author: Charles Tapley Hoyt
Author-email: charles.hoyt@scai.fraunhofer.de
License: Apache 2.0 License
Description: OLS Client
        ==========
        A Python wrapper for accessing the RESTful API of the Ontology Lookup Service
        
        Installation
        ------------
        Install the latest stable version from PyPI
        
        .. code:: sh
        
            $ python3 -m pip install ols_client
        
        Install the latest version directly from GitHub
        
        .. code:: sh
        
            $ python3 -m pip install git+https://github.com/cthoyt/ols-client.git
        
        Cookbook
        --------
        Getting labels from ontology
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        >>> from ols_client import get_labels
        >>> labels = get_labels('chebi')
        
        Getting labels from ontology using an alternative OLS
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        >>> from ols_client import get_labels
        >>> labels = get_labels('chebi', ols_base='http://lookup.scaiview.com/ols-boot/api/')
        
        Using the CLI
        ~~~~~~~~~~~~~
        .. code:: sh
        
            $ python3 -m ols_client labels chebi > chebi.txt
        
Keywords: Ontology Lookup Service,Semantics
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
