An open API service indexing awesome lists of open source software.

https://github.com/zachary822/pycyrest

A python CyREST library for Cytoscape
https://github.com/zachary822/pycyrest

cytoscape python3 rest-client

Last synced: 7 months ago
JSON representation

A python CyREST library for Cytoscape

Awesome Lists containing this project

README

          

# 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