Python Modules - What can I import?
$ export PYTHONPATH="/path/to/module/"
$ python3 -c "import sys; print(sys.path)"
['', '/path/to/module', '/usr/lib/python310.zip', '/usr/lib/python3.10', ...
or, to modify it only for a single execution,
$ PYTHONPATH="/path/to/module/" python3 -c "import sys; print(sys.path)"
['', '/path/to/module', '/usr/lib/python310.zip', '/usr/lib/python3.10', ...