I am making a Django project with multiple apps and was wondering if it would be considered good or bad practice to create a single library.py file with all the "import x" and "from x import y, z" statements and then simply put "from library.py import *" at the top of every other file?
What would be considered best practice for managing your imported libraries like this?
Thanks for the help.