Not sure if this is a temporary outage, but the links to Krita’s python API (LibKis) are returning 404. See links here , they currently link to 404 Not Found (kde.org)
Is there an alternate source for the python API documentation while this site is down?
You have 3 options:
Web Archive waybackmachine
pros: You get the linking between functions
cons: Not all pages work
https://archive.org/web/
Source code: (.h files)
Pros: everything is there
Cons: no linking between stuff
Python developer tools
Pros: Readily available directly in Krita and filterable for convenience
Cons: You need Krita open to run it
Introducing Python Plugin developer Tools!
The goal of these tools is to make it easier for people to develop python plugins.
Current features include:
Selector/Sampler - for selecting with the mouse PyQt5 objects. Hold the shift key(or optionally ctrl/alt/meta key) and move the mouse as you wish, when you find the item you want, let go of the shift and it will show up in inspector.
Inspector - Lets you browse/search the PyQt5 tree and also view all the properties (including inher…