Metadata-Version: 2.4
Name: microsoft-teams-devtools
Version: 2.0.0a9
Summary: Local tool to streamline testing and development
Project-URL: Homepage, https://github.com/microsoft/teams.py/tree/main/packages/devtools/src/microsoft/teams/devtools
Author-email: Microsoft <TeamsAISDKFeedback@microsoft.com>
License-Expression: MIT
Keywords: agents,ai,bot,microsoft,teams
Requires-Python: <3.15,>=3.12
Requires-Dist: fastapi>=0.115.13
Requires-Dist: microsoft-teams-api
Requires-Dist: microsoft-teams-apps
Requires-Dist: pydantic>=2.0.0
Requires-Dist: uvicorn[standard]>=0.34.3
Description-Content-Type: text/markdown

> [!CAUTION]
> This project is in public preview. We’ll do our best to maintain compatibility, but there may be breaking changes in upcoming releases.

# Microsoft Teams DevTools

<p>
    <a href="https://pypi.org/project/microsoft-teams-devtools" target="_blank">
        <img src="https://img.shields.io/pypi/v/microsoft-teams-devtools" />
    </a>
    <a href="https://pypi.org/project/microsoft-teams-devtools" target="_blank">
        <img src="https://img.shields.io/pypi/dw/microsoft-teams-devtools" />
    </a>
    <a href="https://microsoft.github.io/teams-sdk" target="_blank">
        <img src="https://img.shields.io/badge/📖 Getting Started-blue?style=for-the-badge" />
    </a>
</p>

[📖 Documentation](https://microsoft.github.io/teams-sdk/developer-tools/devtools/)

Developer tools for locally testing and debugging Teams applications. Streamlines the development process by eliminating the need to deploy apps or expose public endpoints during development.

## Installation

```bash
uv add microsoft-teams-devtools
```

## Usage

```python
from microsoft_teams.apps import App
from microsoft_teams.devtools import DevToolsPlugin

app = App()
app.use(DevToolsPlugin())

await app.start()
# Open http://localhost:3979/devtools in your browser
```
