-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0798b15
commit 5be15a7
Showing
7 changed files
with
2,410 additions
and
3,391 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,58 @@ | ||
Metadata-Version: 2.1 | ||
Name: vfb-connect | ||
Version: 1.2.20.dev45+fcedd60.dirty | ||
Name: vfb_connect | ||
Version: 1.3.0.dev2+0798b15.dirty | ||
Summary: Wrapper for querying VirtualFlyBrain servers. | ||
Home-page: https://github.com/VirtualFlyBrain/VFB_connect | ||
Author: David Osumi-Sutherland | ||
Author-email: [email protected] | ||
License: UNKNOWN | ||
Project-URL: Bug Reports, https://github.com/VirtualFlyBrain/VFB_connect/issues | ||
Project-URL: Source, https://github.com/VirtualFlyBrain/VFB_connect | ||
Project-URL: Documentation, https://vfb-connect.readthedocs.io/en/stable/ | ||
Description: # VFB_connect [![test_vfb-connect](https://github.com/VirtualFlyBrain/VFB_connect/actions/workflows/test_vfb-connect.yml/badge.svg)](https://github.com/VirtualFlyBrain/VFB_connect/actions/workflows/test_vfb-connect.yml) [![publish-to-pypi](https://github.com/VirtualFlyBrain/VFB_connect/actions/workflows/publish-to-pypi.yml/badge.svg)](https://github.com/VirtualFlyBrain/VFB_connect/actions/workflows/publish-to-pypi.yml) [![PyPI version](https://badge.fury.io/py/vfb-connect.svg)](https://pypi.org/project/vfb-connect/) | ||
[![test_notebooks](https://github.com/VirtualFlyBrain/VFB_connect/actions/workflows/test_notebooks.yml/badge.svg)](https://github.com/VirtualFlyBrain/VFB_connect/actions/workflows/test_notebooks.yml) [![Documentation Status](https://readthedocs.org/projects/vfb-connect/badge/?version=stable)](https://vfb-connect.readthedocs.io/en/stable/?badge=latest) | ||
|
||
VFB_connect is a Python lib that wraps data/knowledgeBase query endpoints and returns VFB_json. | ||
|
||
|
||
Available on PyPi: | ||
|
||
` pip install vfb_connect ` | ||
|
||
|
||
## Some examples: | ||
|
||
```python | ||
|
||
from vfb_connect.cross_server_tools import VfbConnect | ||
|
||
# VFB connect object wraps connections and queries to public VFB servers. | ||
|
||
vc=VfbConnect() | ||
|
||
# Get TermInfo for Types/Classes, DataSets and anatomical individuals. | ||
|
||
vc.neo_query_wrapper.get_type_TermInfo(['FBbt_00003686']) | ||
|
||
vc.neo_query_wrapper.get_DataSet_TermInfo(['Ito02013']) | ||
|
||
vc.neo_query_wrapper.get_anatomical_individual_TermInfo(['VFB_00010001']) | ||
|
||
# Get all terms relevant to a brain region (all parts and all overlapping cells. Query by label supported by default. | ||
|
||
vc.get_terms_by_region('fan-shaped body') | ||
|
||
``` | ||
|
||
TermInfo return values conform to [VFB_json_schema](https://virtualflybrain.github.io/schema_doc.html) | ||
|
||
For more examples see our [Quick Guide Jupyter Notebook](https://github.com/VirtualFlyBrain/VFB_connect/blob/master/snippets/VFB_connect_Quick_Guide.ipynb) | ||
|
||
Platform: UNKNOWN | ||
Classifier: Development Status :: 4 - Beta | ||
Classifier: Intended Audience :: Science/Research | ||
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3) | ||
Classifier: Programming Language :: Python :: 3 | ||
Description-Content-Type: text/markdown | ||
License-File: LICENSE | ||
Requires-Dist: requests | ||
Requires-Dist: pandas | ||
Requires-Dist: jsonpath_rw | ||
|
||
# VFB_connect [![test_vfb-connect](https://github.com/VirtualFlyBrain/VFB_connect/actions/workflows/test_vfb-connect.yml/badge.svg)](https://github.com/VirtualFlyBrain/VFB_connect/actions/workflows/test_vfb-connect.yml) [![publish-to-pypi](https://github.com/VirtualFlyBrain/VFB_connect/actions/workflows/publish-to-pypi.yml/badge.svg)](https://github.com/VirtualFlyBrain/VFB_connect/actions/workflows/publish-to-pypi.yml) [![PyPI version](https://badge.fury.io/py/vfb-connect.svg)](https://pypi.org/project/vfb-connect/) | ||
[![test_notebooks](https://github.com/VirtualFlyBrain/VFB_connect/actions/workflows/test_notebooks.yml/badge.svg)](https://github.com/VirtualFlyBrain/VFB_connect/actions/workflows/test_notebooks.yml) [![Documentation Status](https://readthedocs.org/projects/vfb-connect/badge/?version=stable)](https://vfb-connect.readthedocs.io/en/stable/?badge=latest) | ||
|
||
VFB_connect is a Python lib that wraps data/knowledgeBase query endpoints and returns VFB_json. | ||
|
||
|
||
Available on PyPi: | ||
|
||
` pip install vfb_connect ` | ||
|
||
|
||
## Some examples: | ||
|
||
```python | ||
|
||
from vfb_connect.cross_server_tools import VfbConnect | ||
|
||
# VFB connect object wraps connections and queries to public VFB servers. | ||
|
||
vc=VfbConnect() | ||
|
||
# Get TermInfo for Types/Classes, DataSets and anatomical individuals. | ||
|
||
vc.neo_query_wrapper.get_type_TermInfo(['FBbt_00003686']) | ||
|
||
vc.neo_query_wrapper.get_DataSet_TermInfo(['Ito02013']) | ||
|
||
vc.neo_query_wrapper.get_anatomical_individual_TermInfo(['VFB_00010001']) | ||
|
||
# Get all terms relevant to a brain region (all parts and all overlapping cells. Query by label supported by default. | ||
|
||
vc.get_terms_by_region('fan-shaped body') | ||
|
||
``` | ||
|
||
TermInfo return values conform to [VFB_json_schema](https://virtualflybrain.github.io/schema_doc.html) | ||
|
||
For more examples see our [Quick Guide Jupyter Notebook](https://github.com/VirtualFlyBrain/VFB_connect/blob/master/snippets/VFB_connect_Quick_Guide.ipynb) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters