Metadata-Version: 2.1
Name: grakn-client
Version: 1.5.3
Summary: Grakn Client for Python
Home-page: https://github.com/graknlabs/grakn/tree/master/client-python
Author: Grakn Labs
Author-email: community@grakn.ai
License: Apache-2.0
Keywords: grakn database graph knowledgebase knowledge-engineering
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Environment :: Console
Classifier: Topic :: Database :: Front-Ends
Description-Content-Type: text/markdown
Requires-Dist: grpcio (==1.16.0)
Requires-Dist: protobuf (==3.6.1)
Requires-Dist: six (==1.11.0)
Requires-Dist: enum-compat (==0.0.2)

# Grakn Client for Python

[![CircleCI](https://circleci.com/gh/graknlabs/client-python/tree/master.svg?style=shield)](https://circleci.com/gh/graknlabs/client-python/tree/master)
[![Slack Status](http://grakn-slackin.herokuapp.com/badge.svg)](https://grakn.ai/slack)
[![Discussion Forum](https://img.shields.io/discourse/https/discuss.grakn.ai/topics.svg)](https://discuss.grakn.ai)
[![Stack Overflow](https://img.shields.io/badge/stackoverflow-grakn-796de3.svg)](https://stackoverflow.com/questions/tagged/grakn)
[![Stack Overflow](https://img.shields.io/badge/stackoverflow-graql-3dce8c.svg)](https://stackoverflow.com/questions/tagged/graql)

## Client Architecture
To learn about the mechanism that a Grakn Client uses to set up communication with keyspaces running on the Grakn Server, refer to [Grakn > Client API > Overview](http://dev.grakn.ai/docs/client-api/overview).

## API Reference
To learn about the methods available for executing queries and retrieving their answers using Client Python, refer to [Grakn > Client API > Python > API Reference](http://dev.grakn.ai/docs/client-api/python#api-reference).

## Concept API
To learn about the methods available on the concepts retrieved as the answers to Graql queries, refer to [Grakn > Concept API > Overview](http://dev.grakn.ai/docs/concept-api/overview)

## Install Grakn Client for Python through Pip
```
pip install grakn-client
```
If multiple Python versions are available, you may wish to use
```
pip3 install grakn-client
```

In your python program, import GraknClient:
```
from grakn.client import GraknClient
```


