Metadata-Version: 2.1
Name: yext
Version: 0.6.5
Summary: Yext API Client for Python
Home-page: https://github.com/Yext/yext-client-python
Author: Yext Team
Author-email: mdavish@yext.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Yext API Client for Python
This library contains utilities for interacting with the Yext API in Python.

## 💡 Getting Started

First, install Yext Python API Client via the [pip](https://pip.pypa.io/en/stable/installing) package manager:
```bash
pip install --upgrade 'yext'
```

Then, create entities in your Knowledge Graph:
```python
from yext import YextClient

client = YextClient('<your_api_key>')
profile = {
    'meta': {
        'id': 'entity_id',
        'countryCode': 'US'
    },
    'name': 'What is Yext Answers?',
    'answer': 'A revolutionary search product.'
}
entity_type = 'faq'

client.create_entity(entity_type, profile)
```
