Metadata-Version: 2.1
Name: mattermost_py_api
Version: 1.0.4
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 Python API Library

A Python library for interacting with Mattermost's API, providing flexible and extensible methods for making REST API calls.

## Installation

### From PyPI (Stable Version)
```bash
pip install mm-py-api
```

### From GitHub (Latest Development Version)
```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",
    method="GET"
)
print(response)
```

