kppy
kppy copied to clipboard
Incorrect import statement in documentation
The documentation here shows to do from kppy import KPDB, KPError
However, from looking through the source, it looks like this should be
from kppy.exceptions import KPError
from kppy.database import KPDBv1
A few changes to the examples are necessary after changing these import statements, too.