Metadata-Version: 2.1
Name: wox-plugin
Version: 0.0.24
Summary: Python types for Wox plugins
Home-page: https://github.com/Wox-launcher/Wox
Author: Wox-launcher
Author-email: 
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: build>=1.2.2.post1; extra == "dev"
Requires-Dist: twine>=6.0.1; extra == "dev"

# Wox Plugin Python

This package provides type definitions for developing Wox plugins in Python.

## Installation

```bash
pip install wox-plugin
```

## Usage

```python
from wox_plugin import Plugin, Query, Result, Context, PluginInitParams

class MyPlugin(Plugin):
    async def init(self, ctx: Context, params: PluginInitParams) -> None:
        self.api = params.API
        
    async def query(self, ctx: Context, query: Query) -> list[Result]:
        # Your plugin logic here
        return []
```

## License

MIT 
