Hello,
How can I import classes from another file into another python or Jupiter file? for example, class X from file xxx.py to main.py.
Adding to that, I don't want to globally define my class (tbh, I don't know how I can do it) and also I tried the “from xxx import X” but it didn't work…
thanks