Hi Tejas, Have you tried using the download_criteria_report_as_stream.py <https://github.com/googleads/googleads-python-lib/blob/master/examples/adwords/v201605/reporting/download_criteria_report_as_stream.py> example to stream AdWords reports? Could you use the below code snippet to process *stream_data*?
try: while True: chunk = stream_data.read(CHUNK_SIZE) if not chunk: break report_data.write(chunk.decode() if sys.version_info[0] == 3 and getattr(report_data, 'mode', 'w') == 'w' else chunk) print report_data.getvalue() finally: report_data.close() stream_data.close() If this doesn't work, please provide the complete report definition used and any error message received along with your clientCustomerID. Please use *Reply privately to author* when responding. Regards, Shwetha, AdWords API Team. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com 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 Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscr...@googlegroups.com. 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/7dd4adad-b8bd-4825-8639-5bef60ccd42c%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.