Metadata-Version: 2.1
Name: wikijs-pyclient
Version: 1.0.1
Summary: Python client for an easy interaction with the WikiJS graphql API
Home-page: https://github.com/lovesh-kumrawat/wikijs-pyclient
Download-URL: https://pypi.org/project/wikijs-pyclient
Author: Lovesh Kumrawat
Author-email: kumrawat.lovesh@gmail.com
Maintainer: Lovesh Kumrawat
Maintainer-email: kumrawat.lovesh@gmail.com
License: MIT License
Keywords: wikijs-client,wikijs-python-client,wikijs-api-wrapper,wikijs-graphql-api,wikijs-graphql-api-automation
Platform: ALL
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Software Development
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# Wikijs PyClient

A python client for an easy interaction with the WikiJS graphql API, through automating the graphql queries.

- **[Documentation](https://github.com/lovesh-kumrawat/wikijs-pyclient/wiki/Documentation)**
- **[Source Code](https://github.com/lovesh-kumrawat/wikijs-pyclient)**
- **[Pypi Package](https://pypi.org/project/wikijs-pyclient/)**
- **[Bug Reports](https://github.com/lovesh-kumrawat/wikijs-pyclient/issues)**

---
## Installation `python 3.10+`

    pip install wikijs-pyclient

## WikiJS client setup

```python
from wikijs import WikiJS
wiki = WikiJS(
    url="<protocol>://<wiki_host>:<wiki_port>",
    token="<wiki_api_key>"
)
```
