Metadata-Version: 2.1
Name: PyCyRest
Version: 1.0.0
Summary: A python CyREST library for Cytoscape.
Home-page: UNKNOWN
Author: Zachary Juang
Author-email: zacharyjuang@gmail.com
License: UNKNOWN
Description: # PyCyRest
        
        ## Introduction
        
        Simple python library to connect to [cyREST](http://apps.cytoscape.org/apps/cyrest).
        
        ## Usage
        
        ```python
        import pycyrest
        
        client = pycyrest.CyRest()
        
        print(client.operations)  # get a list of all possible operations
        
        client.getStylesNames()  # Get a list of currently available styles
        
        ```
        
        ## Installation
        
        ```bash
        pip install pycyrest
        ```
        
        ## License
        
        MIT
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
