Metadata-Version: 2.1
Name: mattermost_py_api
Version: 1.0.2
Summary: A simple Python library for making Mattermost API calls
Home-page: https://github.com/jlandells/mm-py-api
Author: John Landells
Author-email: john.landells@mattermost.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

![Unit Tests](https://github.com/jlandells/mm-py-api/actions/workflows/unit-tests.yml/badge.svg)


# Mattermost API Library

A simple Python library for making Mattermost API calls.

## Installation

Install directly from GitHub:

```bash
pip install git+https://github.com/jlandells/mm-py-api.git
```

## Usage

```python
from mattermost_api import make_mattermost_api_call

response = make_mattermost_api_call(
    mattermost_url="https://example.com",
    api_token="your_token",
    endpoint="/api/v4/users/me",
)
print(response)
```

