Aliyun GraphCompute Python SDK
Project description
The GraphCompute SDK for Python allows user to access GraphCompute Service on Alibaba Cloud. You can access Graph Compute service without the need to generate accesskey-related signature manually. This README document introduces how to obtain and call GraphCompute SDK for Python. If you have any problem while using GraphCompute SDK for Python, please submit an issue.
Requirements
To use GraphCompute SDK for Python, you must have an Alibaba Cloud account as well as an AccessKey ID and an AccessKey Secret. Create and view your AccessKey on the RAM console or contact your system administrator.
To use GraphCompute SDK for Python to access the APIs of a product, you must first activate the product on the Alibaba Cloud console if required.
Python 2.7 is strongly recommended
Installation
Install the official release version through PIP:
$ pip install graphcompute
You can also install the unzipped installer package directly:
$ python setup.py install
Getting Started
# -*- coding: utf-8 -*-
from graphcompute import GraphCompute_Client
from graphcompute.utils.auth import Credentials
access_key_id = "your access_key_id"
access_key_secret = "your access_key_secret"
cred = Credentials(access_key_id, access_key_secret)
instance_domain = "your instance domain with port"
remote_endpoint = "ws://%s/gremlin" % str(instance_domain)
client = GraphCompute_Client(remote_endpoint, 'g', cred)
query="g.V()"
result = client.submit(query).one()
client.close()
More examples can be referred in basic_func_examples.py under “examples” directory.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file graphcompute-1.0.2.tar.gz
.
File metadata
- Download URL: graphcompute-1.0.2.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/0.9.8 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5eab0fa769a2da5a6d0193d74359218c64f0b45224304c2170769e8fb1bb6dc0 |
|
MD5 | 1f9d34912ad4f8e0b22de84b991e33f6 |
|
BLAKE2b-256 | 883f976178e27901d0b883bc8fd05c6837a7d81590a372edc48906c6fbda9cbd |