Looking at the zip file, your plugin does not have an import name. You create an import name by creating an empty text file in the root of your plugin with the following name:
Code:
plugin-import-name-ao3_tagger.txt
You can change the part
highlighted in blue, so long as you stick to only including letters, numbers and underscores.
Quote:
Originally Posted by SylvanKnight
I call it like
Code:
from PyPDF2 import PdfReader
|
After adding the import name as explained above, you should modify the import statement to include your import name as follows:
Code:
from calibre_plguins.ao3_tagger.PyPDF2 import PdfReader
Note: I have not tested whether the above instructions work with your plugin. Will leave that to you.