Metadata-Version: 2.1
Name: helpjuice
Version: 3.0.0
Summary: Python Helpjuice API Wrapper.
Home-page: https://helpjuice.readthedocs.io
Author: Sam Morgan
Author-email: sam@samamorgan.com
License: GNU GPL 3.0
Project-URL: Documentation, https://helpjuice.readthedocs.io
Project-URL: Source, https://github.com/samamorgan/helpjuice
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: ~=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# helpjuice

## A Python wrapper of the Helpjuice API

[![Version](https://img.shields.io/pypi/v/helpjuice)](https://pypi.org/project/helpjuice/)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)

This package allows Python developers to write software that makes use of the Helpjuice API. Functions available in the API are mirrored in this package as closely as possible, translating JSON responses to Python objects. You can find the current documentation for the Helpjuice API here:

[Helpjuice API Documentation](https://help.helpjuice.com/en_US/api-v3/)

### Installing

```
pip install helpjuice
```

### Quick Start

```python
from helpjuice import Client

helpjuice = Client(account="your-account", api_key="ffb722a62e8**********************")

# Get a single article
article = helpjuice.Article(id=1).get()

# Search for articles with pagination
for question in helpjuice.Search().get(query="foo", limit=1000, paginate=True):
    print(question)
```


