Skip to main content

Python wrapper around linkurious API

Project description

Description

linkurious is a tortilla based python wrapper around the Linkurious HTTP REST API that allows users to remotely manage a Linkurious instance, performing the same tasks that can be done through the web application.

This can be useful to:

  • automate some of the most tedious tasks
  • integrate the Linkurious instance within a wider multi-services application

Linkurious Enterprise is a copyrighted graph visualization and analysis platform, that allows users to perform queries and build visualizations on multiple graph databases (Neo4j, CosmosDB, JanusGraph).

Installation

Python versions from 3.6 are supported.

The package is hosted on pypi, and can be installed, for example using pip:

pip install linkurious

Usage

The package only has one class (and one exception), creating a Linkurious instance passing username and password will connect to the instance. All following operations will be performed using the same user session.

from linkurious import Linkurious

# login
l = Linkurious(
    host='https://linkurious.example.org', 
    username='user@mail.org', 
    password='****', 
    debug=False
)

# query execution
query = """
MATCH (p:Person)-[i]-(m:Movie) where m.id=12
return p, i, m
limit 100
"""
r = l.run_cypher_query(sourcekey='ae46c2f7', query=query)

# nodes and edges are transformed before being sent to the visualization 
r_nodes = [
    {
        'id': n.data.properties.id, 
        'data': {
            'geo': {}
        }, 
        'attributes': {
            'layoutable': True, 
            'x': 0, 'y': 0
        }
    } 
    for n in r['nodes']
]
r_edges = [
    {
        'id': e.data.properties.id, 
        'attributes': {}
    } 
    for e in r.edges
]

# visualization creation
v = l.create_visualization(
    sourcekey='ae46c2f7', 
    title="Test from API", 
    nodes=r_nodes, 
    edges=r_edges
)
# server-side auto layouting, in order to spread the nodes
l.patch_visualization(
    sourcekey='ae46c2f7', id=v.id, 
    do_layout=True,
)

# visualization styles are reset
v.design.styles.node = []
v.design.styles.edge = []
l.patch_visualization(
    sourcekey='ae46c2f7', id=v.id,     
    visualization={'design': dict(v.design)},
    force_lock=True
)

# so that they can now be built anew
# see https://doc.linkurio.us/server-sdk/latest/apidoc/#api-Visualization-createVisualization
# and the links on INodeStyle and IEdgeStyle
v.design.styles.node = [
    { ... }
] 
v.design.styles.edges = [
    { ... }
] 
# design is updated in the visualization
# it must be transformed into a dict, as v is a Bunch (from tortilla),
# and it may causes all sorts of bad requests responses from Linkurious API
l.patch_visualization(
    sourcekey='ae46c2f7', id=v.id,     
    visualization={'design': dict(v.design)},
    force_lock=True
)

# the same can be done for 
# - visualization filters (v.filters)
# - visualization captions (v.nodeFields, v.edgeFields)

Support

There is no guaranteed support available, but authors will try to keep up with issues and merge proposed solutions into the code base.

Project Status

This project is currently being developed by the Openpolis Foundation and does only cover those parts of the Linkurious API that are needed in the Foundation's projects. Should more be needed, you can either ask to increase the coverage, or try to contribute, following instructions below.

Contributing

In order to contribute to this project:

  • verify that python 3.6+ is being used (or use pyenv)
  • verify or install poetry, to handle packages and dependencies in a leaner way, with respect to pip and requirements
  • clone the project git clone git@github.com:openpolis/linkurious.git
  • install the dependencies in the virtualenv, with poetry install, this will also install the dev dependencies
  • develop
  • create a pull request
  • wait for the maintainers to review and eventually merge your pull request into the main repository

Testing

As this is a tiny utility wrapper around an already tested and quite simple package (tortilla), there are no tests.

Authors

Guglielmo Celata - guglielmo@openpolis.it

Licensing

This package is released under an MIT License, see details in the LICENSE.txt file.

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

linkurious-0.1.3.tar.gz (7.1 kB view details)

Uploaded Source

Built Distribution

linkurious-0.1.3-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file linkurious-0.1.3.tar.gz.

File metadata

  • Download URL: linkurious-0.1.3.tar.gz
  • Upload date:
  • Size: 7.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/3.8.9 Darwin/20.5.0

File hashes

Hashes for linkurious-0.1.3.tar.gz
Algorithm Hash digest
SHA256 7445ba2a7ab9f24d78ca5f566b1ff2a95cbce6b0fef3e04b2ae438f4716611eb
MD5 dacedf92e3838b9fc9d99dabeb59b60b
BLAKE2b-256 54771e8431a2200dc0bd8fbda379ab3984f089d313416f2542c4cb77ad5e4acf

See more details on using hashes here.

File details

Details for the file linkurious-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: linkurious-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 6.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/3.8.9 Darwin/20.5.0

File hashes

Hashes for linkurious-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 475f8bcf471bd2916c7081c2a0d9da9eda1664e23269c84e3e02e3a66b21627e
MD5 ce6484033064ac0e26bba3cba61d89f8
BLAKE2b-256 b374a51bdc06ded5a7c8aff7953a1ef2b78c5774b79ffefc10b7b0c5ea3d7e34

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page