The Wayback Machine - https://web.archive.org/web/20201028230044/https://github.com/cayleygraph/python-client
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Python Client for Cayley

This is a work in progress official Python client for the next version of Cayley.

Usage

Print 10 nodes from the graph

import cayley

client = cayley.Client()

for node in client.query(cayley.path.vertex().limit(10)):
    print(node)

Development

  • If not installed, install poetry globally with pip3 install poetry

In project's directory:

  • Install dependencies with poetry install

The client uses the LinkedQL OWL schema file to generate the code for the client.

  • Copy schema.json for generation
  • Test with poetry run python test.py

About

Python client for Cayley

Resources

Releases

No releases published

Packages

No packages published

Languages

You can’t perform that action at this time.