I'm trying to import a module from an application-specific terminal (Maya in this case, but eventually others). I've downloaded a project off git, and I have a structure like so:
modulename
submodule
__init.py__
subsubmodule
...
submodule
...
__init.py__
modulename.py
…
I'm trying to implement a self-referential many-to-many relationship using declarative on SQLAlchemy.
The relationship represents friendship between two users. Online I've found (both in the documentation and Google) how to make a self-referential m2m relationship where somehow the roles …