I successfully installed this package using pip:
pip install functional-dependencies
Output:
Collecting functional-dependencies
Downloading functional_dependencies-1.3.0-py2.py3-none-any.whl (33 kB)
Installing collected packages: functional-dependencies
Successfully installed functional-dependencies-1.3.0
which should provide tools for functional dependencies (FDs).
However, trying to get FDs using the commands as per the documentation results in an error:
Python 3.10.7 (tags/v3.10.7:6cc6b13, Sep 5 2022, 14:08:36) [MSC v.1933 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> fd1 = FD("CustomerID", "DateOfBirth")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'FD' is not defined
How can I access the classes, functions and objects from the installed package?