Skip to content

Instantly share code, notes, and snippets.

@cyclecycle
cyclecycle / client.py
Last active July 30, 2018 19:32
Grakn client.py
"""Grakn python client."""
from typing import Dict, Any
import requests
_HEADERS: Dict[str, str] = {'Accept': 'application/graql+json'}
_QUERY_ENDPOINT: str = '/kb/{}/graql'