Metadata-Version: 2.1
Name: marklogic-python-client
Version: 0.9.1
Summary: Python client for MarkLogic, built on the requests library
License: Apache 2.0
Author: MarkLogic
Author-email: general@developer.marklogic.com
Requires-Python: >=3.9,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: requests (>=2.31.0,<3.0.0)
Requires-Dist: requests_toolbelt (>=1.0.0,<2.0.0)
Description-Content-Type: text/markdown

# MarkLogic Python Client

The [Python `requests` library](https://pypi.org/project/requests/) allows Python developers to easily create 
applications that communicate with the [MarkLogic REST API](https://docs.marklogic.com/guide/rest-dev). The 
MarkLogic Python Client further simplifies usage of the `requests` library by supporting common authentication 
strategies with MarkLogic and improving the user experience with some of the more common endpoints in the MarkLogic
REST API.

An instance of the client can be easily created and then used in the exact same way as the `requests` API:

```
from marklogic import Client
client = Client("http://localhost:8000", digest=("python-user", "pyth0n"))
response = client.get("/v1/search", params={"q": "marklogic and python", "pageLength": 100})
```

Please see [the user guide](https://marklogic.github.io/marklogic-python-client/) to start using the client.

