Skip to main content

Library to connect to TigerGraph databases

Project description

pyTigerGraph

pyTigerGraph is a Python client for TigerGraph databases. It wraps the REST++ and GSQL APIs and provides both a synchronous and an asynchronous interface.

Full documentation: https://docs.tigergraph.com/pytigergraph/current/intro/

Downloads: Total Downloads | Monthly Downloads | Weekly Downloads


Installation

Base package

pip install pyTigerGraph

Optional extras

Extra What it adds Install command
gds Graph Data Science — data loaders for PyTorch Geometric, DGL, and Pandas pip install 'pyTigerGraph[gds]'
mcp Model Context Protocol server — installs pyTigerGraph-mcp (convenience alias) pip install 'pyTigerGraph[mcp]'
fast orjson JSON backend — 2–10× faster parsing, releases the GIL under concurrent load pip install 'pyTigerGraph[fast]'

Extras can be combined:

pip install 'pyTigerGraph[fast,gds,mcp]'

[gds] prerequisites

Install torch before installing the gds extra:

  1. Install Torch
  2. Optionally Install PyTorch Geometric or Install DGL
  3. pip install 'pyTigerGraph[gds]'

[fast] — orjson JSON backend

orjson is a Rust-backed JSON library that is detected and used automatically when installed. No code changes are required. It improves throughput in two ways:

  • Faster parsing — 2–10× vs stdlib json
  • GIL release — threads parse responses concurrently instead of serialising on the GIL

If orjson is not installed the library falls back to stdlib json transparently.


Quickstart

Synchronous connection

from pyTigerGraph import TigerGraphConnection

conn = TigerGraphConnection(
    host="http://localhost",
    graphname="my_graph",
    username="tigergraph",
    password="tigergraph",
)

print(conn.echo())

Use as a context manager to ensure the underlying HTTP session is closed:

with TigerGraphConnection(host="http://localhost", graphname="my_graph") as conn:
    result = conn.runInstalledQuery("my_query", {"param": "value"})

Asynchronous connection

AsyncTigerGraphConnection exposes the same API as TigerGraphConnection but with async/await syntax. It uses aiohttp internally and shares a single connection pool across all concurrent tasks, making it significantly more efficient than threaded sync code at high concurrency.

import asyncio
from pyTigerGraph import AsyncTigerGraphConnection

async def main():
    async with AsyncTigerGraphConnection(
        host="http://localhost",
        graphname="my_graph",
        username="tigergraph",
        password="tigergraph",
    ) as conn:
        result = await conn.runInstalledQuery("my_query", {"param": "value"})
        print(result)

asyncio.run(main())

Token-based authentication

conn = TigerGraphConnection(
    host="http://localhost",
    graphname="my_graph",
    gsqlSecret="my_secret",   # generates a session token automatically
)

HTTPS / TigerGraph Cloud

conn = TigerGraphConnection(
    host="https://my-instance.i.tgcloud.io",
    graphname="my_graph",
    username="tigergraph",
    password="tigergraph",
    tgCloud=True,
)

Connection parameters

Parameter Type Default Description
host str "http://127.0.0.1" Server URL including scheme (http:// or https://)
graphname str "" Target graph name
username str "tigergraph" Database username
password str "tigergraph" Database password
gsqlSecret str "" GSQL secret for token-based auth (preferred over username/password)
apiToken str "" Pre-obtained REST++ API token
jwtToken str "" JWT token for customer-managed authentication
restppPort int|str "9000" REST++ port (auto-fails over to 14240/restpp for TigerGraph 4.x)
gsPort int|str "14240" GSQL server port
certPath str None Path to CA certificate for HTTPS
tgCloud bool False Set to True for TigerGraph Cloud instances

Performance notes

Synchronous mode (TigerGraphConnection)

  • Each thread gets its own dedicated HTTP session and connection pool, so concurrent threads never block each other.
  • Install pyTigerGraph[fast] to activate the orjson backend and reduce JSON parsing overhead under concurrent load.
  • Use ThreadPoolExecutor to run queries in parallel:
from concurrent.futures import ThreadPoolExecutor, as_completed

with TigerGraphConnection(...) as conn:
    with ThreadPoolExecutor(max_workers=16) as executor:
        futures = [executor.submit(conn.runInstalledQuery, "q", {"p": v}) for v in values]
        for f in as_completed(futures):
            print(f.result())

Asynchronous mode (AsyncTigerGraphConnection)

  • Uses a single aiohttp.ClientSession with an unbounded connection pool shared across all concurrent coroutines — no GIL, no thread-scheduling overhead.
  • Typically achieves higher QPS and lower tail latency than the threaded sync mode for I/O-bound workloads.
import asyncio
from pyTigerGraph import AsyncTigerGraphConnection

async def main():
    async with AsyncTigerGraphConnection(...) as conn:
        tasks = [conn.runInstalledQuery("q", {"p": v}) for v in values]
        results = await asyncio.gather(*tasks)

asyncio.run(main())

Graph Data Science (GDS)

The gds sub-module provides data loaders that stream vertex and edge data from TigerGraph directly into PyTorch Geometric, DGL, or Pandas DataFrames for machine learning workflows.

Install requirements, then access via conn.gds:

conn = TigerGraphConnection(host="...", graphname="...")
loader = conn.gds.vertexLoader(attributes=["feat", "label"], batch_size=1024)
for batch in loader:
    train(batch)

See the GDS documentation for full details.


MCP Server

The TigerGraph MCP server is now a standalone package: pyTigerGraph-mcp. It exposes TigerGraph operations as tools for AI agents and LLM applications (Claude Desktop, Cursor, Copilot, etc.).

# Recommended — install the standalone package directly
pip install pyTigerGraph-mcp

# Or via the pyTigerGraph convenience alias (installs pyTigerGraph-mcp automatically)
pip install 'pyTigerGraph[mcp]'

# Start the server (reads connection config from environment variables)
tigergraph-mcp

For full setup instructions, available tools, configuration examples, and multi-profile support, see the pyTigerGraph-mcp README.

Migrating from pyTigerGraph.mcp? Update your imports:

# Old
from pyTigerGraph.mcp import serve, ConnectionManager
# New
from tigergraph_mcp import serve, ConnectionManager

Getting started video

pyTigerGraph 101

Companion notebook: Google Colab


Links

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

pytigergraph-2.0.3.tar.gz (363.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytigergraph-2.0.3-py3-none-any.whl (351.0 kB view details)

Uploaded Python 3

File details

Details for the file pytigergraph-2.0.3.tar.gz.

File metadata

  • Download URL: pytigergraph-2.0.3.tar.gz
  • Upload date:
  • Size: 363.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for pytigergraph-2.0.3.tar.gz
Algorithm Hash digest
SHA256 458e41bd191c1fc21ad0a10e35bd5b6d01222c4b80fafa5689f1d417c220a82f
MD5 c734bd8e1174c7dde90e5803a3005330
BLAKE2b-256 a549757b02017b4513c40b603f28ce5881af5ab27ad4cea3fc337f521f5f7d38

See more details on using hashes here.

File details

Details for the file pytigergraph-2.0.3-py3-none-any.whl.

File metadata

  • Download URL: pytigergraph-2.0.3-py3-none-any.whl
  • Upload date:
  • Size: 351.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for pytigergraph-2.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 af63e96c2870485dbd11cc99bc89f787678b685b859888f418cee3947d65ccb4
MD5 a83f327a6e07dfdab2c5425ce86d59f8
BLAKE2b-256 fbc4aaa95547e5e8b4df6fdab368fa96baa95828ab9c3392cb869dceac88d538

See more details on using hashes here.

Supported by

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