Python plugin SDK for Wox launcher
Project description
Wox Plugin Python
This package provides type definitions for developing Wox plugins in Python.
Requirements
- Python >= 3.8 (defined in
pyproject.toml) - Python 3.12 recommended for development (defined in
.python-version)
Installation
# Using pip
pip install wox-plugin
# Using uv (recommended)
uv add wox-plugin
Usage
from wox_plugin import BasePlugin, Query, Result, Context, PluginInitParams
class MyPlugin(BasePlugin):
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
results = []
results.append(
Result(
title="Hello Wox",
subtitle="This is a sample result",
icon="path/to/icon.png",
score=100
)
)
return results
# MUST HAVE! The plugin class will be automatically loaded by Wox
plugin = MyPlugin()
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
wox_plugin-0.0.38.tar.gz
(39.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wox_plugin-0.0.38.tar.gz.
File metadata
- Download URL: wox_plugin-0.0.38.tar.gz
- Upload date:
- Size: 39.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c19b1972e2057b2fe2e794c19c9212a74b1184deb93a438b3a422d42132f1dc5
|
|
| MD5 |
6b869a44d6a7f60558c5eb1611ce019b
|
|
| BLAKE2b-256 |
1d3f0351fe5a959aebf2b3445047cffb93b12f221b31195151ff129afa621a64
|
File details
Details for the file wox_plugin-0.0.38-py3-none-any.whl.
File metadata
- Download URL: wox_plugin-0.0.38-py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc73fbc8c28356894ca009f268dc60f94a499c7ff1187a90465e06881086f984
|
|
| MD5 |
0ee518537d325d84dbff52eaa3486b45
|
|
| BLAKE2b-256 |
9bbcb30ff27052024f9227c797a5a6c4269501ff0317e248eee8d76794482c1b
|