from Google import Create_Service ModuleNotFoundError: No module named 'Google'

Solution 1:

Implicit relative imports are not anymore supported as documented:

There is no longer any implicit import machinery

So if Google.py is in the same directory as the code you pasted, you have to reference it's realtive location explicitly.

from .Google import Create_Service  # Notice the dot (.)

Or it can also be an absolute path. Assuming this is a Django project, then it would be something like:

from my_proj.Google import Create_Service  # This assumes that your file is in my_proj/my_proj/Google.py