Is it possible to use this plugin standalone in Python, without Calibre?
python kfx_input.py
Traceback (most recent call last):
File "C:\Users\codrut\KFX_Input\kfx_input.py", line 6, in <module>
from calibre.gui2.convert import Widget
ModuleNotFoundError: No module named 'calibre'
that's because of:
from PyQt5 import (QtCore, QtWidgets)
from calibre.gui2.convert import Widget
|