Hi,
When using Python 3.4, the command from DerApproximator import * fails with the following error
from DerApproximator import *
Traceback (most recent call last):
File "", line 1, in
File "/usr/local/lib/python3.4/dist-packages/DerApproximator/init.py", line 3, in
from DerApproximator import DerApproximatorException, get_d1, check_d1, get_d2
ImportError: cannot import name 'DerApproximatorException'
But, this is solved by changing the line in init.py to
from .DerApproximator import DerApproximatorException, get_d1, check_d1, get_d2
Notice the period infront of DerApproximator.
Is this a valid solution? If yes, please fix the source.