You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from googleads import oauth2
import sys, inspect
for name, obj in inspect.getmembers(sys.modules["googleads.oauth2"]):
if inspect.isclass(obj):
print(obj)
@mgallivan-loknow sorry for the delayed response. Can you share the full stack trace you're getting? Also how are you executing the example? Is it via a bash command line?
When running the access token example, I receive the error
However, I can run the following without issue
I install the library using
pip install googleads
and all the necessary files, including oauth2.py, can be found inside/Users/username/DevEnv/lib/python3.7/site-packages/googleads/
Does this have something to do with how I import the package, or am I using an old example?
The text was updated successfully, but these errors were encountered: