GSQL client for TigerGraph
Project description
pyTigerDriver
Installation
install with pip:
pip install pyTigerDriver
Usage
Architecture: You can instatiate any Interface [GSQL or REST] in the pyTigerDriver seperately.
This flowchart illustrates the Classes:
graph LR
A[pyTigerDriver as tgCl] -- Gsql --> B((Gsql_Client))
A -- Rest --> C((Rest_Client))
B --> D{TigerGraph Database}
C --> D
Sample Code :
import pyTigerDriver as tg
tgCl = tg.Client(server_ip="127.0.0.1",username="tigergraph",password="tigergraph",version="3.0.5")
print("======================== SIMPLE RESTPP Queries ==================================")
print(tgCl.Rest.get("/echo")) # tgCl.Rest.post or tgCl.Rest.delete
print("============================== SIMPLE LS ===========================================")
print(tgCl.Gsql.execute("ls"))
Code Linting And Unit Testing
Code Linting :
Linting using PEP8 Standards
user@box:~$ flake8 --exclude=venv* --ignore=E501 --statistics pyTigerDriver/pyDriver.py
Running the tests :
run unit tests using pytest :
user@box:~$ pytest -v
CircleCi Work flow :
- create a folder named .circleci in the root of the repo
- within that folder create a file called config.yml containing the folloing flow :
version: 2.1
orbs:
python: circleci/python@0.2.1
jobs:
build-and-test:
executor: python/default
steps:
# Step 1: obtain repo from GitHub
- checkout
# Step 2: create virtual env and install dependencies
- run:
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
# Step 3: run linter and tests
- run:
name: run tests
command: |
. venv/bin/activate
flake8 --exclude=venv* --ignore=E501 --statistics pyTigerDriver/pyDriver.py
pytest -v
workflows:
main:
jobs:
- build-and-test
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
pyTigerDriver-1.0.15.tar.gz
(11.5 kB
view details)
Built Distribution
File details
Details for the file pyTigerDriver-1.0.15.tar.gz
.
File metadata
- Download URL: pyTigerDriver-1.0.15.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f105f89c38229dafd024e759e92ff736781495e1744cec6ec109673f63695593 |
|
MD5 | cfb7610ddd018f60da481a6fd11f0dd3 |
|
BLAKE2b-256 | e76a03d00a040806f88492df20208ae5b806767ec700b2690fa0f0eb22e8c51c |
File details
Details for the file pyTigerDriver-1.0.15-py3-none-any.whl
.
File metadata
- Download URL: pyTigerDriver-1.0.15-py3-none-any.whl
- Upload date:
- Size: 12.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98adc36b62d84e1015318ce7bd6dd1ac7b48890ca05bb697c23e8a8cf5b5d7bd |
|
MD5 | bba1c2e12023df7bd1049af0eb12e44a |
|
BLAKE2b-256 | 68469e586d64796d4d3bcc2c6380e812eed5fd8d425662b4149e18e55484ff59 |