# JUGRI
Project description
The JUpyter-GRemlin Interface.
Gremlinpython package is easy to use to
create queries against any property graph
that supports the Tinkerpop interface.
However, parsing the gremlin results is more complex
as the returned list can contain many objects.
The JUGRI package will help the developer by providing
an easy to use interface to convert these results into
the widely used Pandas DataFrame.
More features are on their way...
## Requirements
Tested on Python 3.7
- gremlinpython
- pandas
## Install/update
Install latest **stable** release:
`pip install --user --upgrade -e git+git@github.com:meltwater/jugri.git#egg=jugri`
or (using https)
`pip install --user --upgrade -e git+https://github.com/meltwater/jugri.git#egg=jugri`
## Usage
Convert Gremlin query results to a Pandas DataFrame:
```
import jugri
from gremlin_python.structure.graph import Graph
graph = Graph()
g = graph.traversal()
df = jugri.to_df(g.V().valueMap(True).limit(10))
# df is a Pandas DataFrame with the results of the query.
```
You can find a [Jupyter notebook example](https://github.com/meltwater/jugri/blob/master/example/Pandification.ipynb)
in the `/example` folder.
## Uninstall
`pip uninstall jugri`
Home-page: https://github.com/meltwater/jugri
Author: Laszlo Velinszky
Author-email: laszlo.velinszky@meltwater.com
License: ASL2
Description: UNKNOWN
Platform: UNKNOWN
Gremlinpython package is easy to use to
create queries against any property graph
that supports the Tinkerpop interface.
However, parsing the gremlin results is more complex
as the returned list can contain many objects.
The JUGRI package will help the developer by providing
an easy to use interface to convert these results into
the widely used Pandas DataFrame.
More features are on their way...
## Requirements
Tested on Python 3.7
- gremlinpython
- pandas
## Install/update
Install latest **stable** release:
`pip install --user --upgrade -e git+git@github.com:meltwater/jugri.git#egg=jugri`
or (using https)
`pip install --user --upgrade -e git+https://github.com/meltwater/jugri.git#egg=jugri`
## Usage
Convert Gremlin query results to a Pandas DataFrame:
```
import jugri
from gremlin_python.structure.graph import Graph
graph = Graph()
g = graph.traversal()
df = jugri.to_df(g.V().valueMap(True).limit(10))
# df is a Pandas DataFrame with the results of the query.
```
You can find a [Jupyter notebook example](https://github.com/meltwater/jugri/blob/master/example/Pandification.ipynb)
in the `/example` folder.
## Uninstall
`pip uninstall jugri`
Home-page: https://github.com/meltwater/jugri
Author: Laszlo Velinszky
Author-email: laszlo.velinszky@meltwater.com
License: ASL2
Description: UNKNOWN
Platform: UNKNOWN
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
jugri-0.4.0.tar.gz
(4.0 kB
view hashes)
Built Distribution
jugri-0.4.0-py3-none-any.whl
(5.0 kB
view hashes)