I’m building an app that interacts with Google’s API services. My forms’ interactions with the server module seemed really slow to me. I examined the individual load times for the all of the imports at the top of my server module and it turns out that the following line would take anywhere from 3 to 5 seconds alone:
from googleapiclient.discovery import build
Has anyone else experienced this type of delay when using googleapiclient.discovery? Is my 3-5 second time to load normal? Any suggestions for optimization?
Thanks so much,
Doug