Hi, I followed the instructions per the documentation, but I am getting missing modules error when I try to use the client.
https://github.com/googleads/google-ads-python/ #from googleads import adwords import google.ads.google_ads.client def main(client, account_id, date): print account_id print date if __name__ == '__main__': g_verbose = True parser = OptionParser() parser.add_option("-d", action="store", dest="date") parser.add_option("-a", action="store", dest="account_id") (options, args) = parser.parse_args(sys.argv[1:]) # Initialize client object. path = '/home/dbadmin/google_ads/google_ads/google-ads.yaml' adwords_client = adwords.AdWordsClient.LoadFromStorage(path=path) *Error* import google.api_core.grpc_helpers ImportError: No module named api_core.grpc_helpers Note: I performed pip install google-ads, but is there a way to install all the dependencies of google-ads as well as part of the pip install? *Output of pip freeze | grep google* *google*-ads==2.0.0 *google*-api-core==1.10.0 *google*-api-python-client==1.7.8 *google*-auth==1.6.3 *google*-auth-httplib2==0.0.3 *google*-auth-oauthlib==0.3.0 *google*apis-common-protos==1.5.10 Python 2.7.13 Thanks, Vinod -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. Visit this group at https://groups.google.com/group/adwords-api. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/CAAkVS%2BJVx6Mi29WgSqD4CdQWuF_kqKb-91RVcBif2cc_akDjpA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
