Metadata-Version: 2.1
Name: PyCyRest
Version: 1.0.1
Summary: A python CyREST library for Cytoscape.
Home-page: https://github.com/zachary822/PyCyRest
Author: Zachary Juang
Author-email: zacharyjuang@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: lxml

# 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()  # Call operation as attribute.

help(client.getStylesNames)  # See description and arguments for an operation
```

To get more information about each operation use the python `help` function.

## Installation

```bash
pip install pycyrest
```

## License

MIT


