cytoscape / py2cytoscape

Python utilities for Cytoscape and Cytoscape.js
https://py2cytoscape.readthedocs.io
MIT License
178 stars 45 forks source link

NetworkClient.get() does not work #12

Closed brownmk closed 9 years ago

brownmk commented 9 years ago

line 138 of network_client.py: return requests.get(self.url + '/' + str(id) + '.json').json() Does not seem to work. networks/52.json does not seem to be supported by CyREST API. Maybe change it into: return requests.get(self.url + '/' + str(id)).json()

keiono commented 9 years ago

Fixed in current development branch. v0.5.0 will be released later today.