Plugin System

July 05, 2026

QuickUp插件系统

自QuickUp-4.11起,提供基于Python(随本应用发行或开发版本)的基本插件系统。相比于通过执行命令来启动个人脚本,插件系统的意义在于:

但是也会受到以下限制:

QuickUp执行插件功能,与插件名称无关,因此注意不要冲突;参数为Python风格,支持位置参数、关键字参数。

既然都用python写插件了,那么QuickUp的/plugin/**下的大体实现也很容易看懂,且在/plugin/__init__.py/plugin/README.md中有说明。主要注意QuickUp中对插件脚本的限制问题。


QuickUp Plugin System

Starting from QuickUp-4.11, a basic plugin system based on Python (either included with this application or in the development version) is provided. Compared to launching individual scripts by executing commands, the significance of the plugin system lies in:

However, there will also be the following limitations:

The QuickUp plugin performs the functionality. The name of the plugin is not relevant to this. Therefore, be careful not to cause any conflicts. The parameters are in Python style and support positional parameters as well as keyword parameters.