0

I have a need to generate and share Google Docs programatically. In this case, these are reports generated weekly from various sources like JIRA and a number of other tools used internally at our company.

The only documentation found so far seems to be related to use of Google scripts to generate documents.

Is there something similar to gspread for Google Spreadsheets that works with Google Docs? A python wrapper would enable us to collect the data from various sources and do some analysis before populating the report.

coderjay
  • 41
  • 1
  • 3

1 Answers1

0

You may refer with this thread. It suggested that you need to create a blob of data representing your document in any of the formats listed here, depending on your programming language, simplest may be text/csv for a spreadsheet and application/rtf for a text-document. Then put in in an appropriately formatted POST data. You can also check the sample python code in the given link.

Community
  • 1
  • 1
abielita
  • 13,147
  • 2
  • 17
  • 59