I’ve Liked your Feature Request @p.colbert.
In terms of finding the slow imports, am I correct in saying that multiple server modules importing the same set of imports (i.e. the standard anvil imports) only import that once, regardless of number server modules that import them?
i.e. in my optimisation here, can I safely ignore the following in all of my modules or do the multiple imports cause loading issues? :
import anvil.users
import anvil.email
import anvil.tables as tables
import anvil.tables.query as q
from anvil.tables import app_tables
import anvil.google.auth, anvil.google.drive, anvil.google.mail
from anvil.google.drive import app_files
import anvil.server`