I'm working in Flask and have split up the code into different files and note that some times I will import the same thing in two different files
Would it be a bad to have a separate Python file where you put all your imports then in all files that need some common libs just import that file?
I don't know if it might have consequences that I have not noticed.
imports.py
import os, requests, json
some-file.py
from imports import *
Is this a bad idea?