简体   繁体   English

将数据从gae数据存储区传输到Google文档电子表格

[英]Transferring data from gae datastore to a google docs spreadsheet

My gae application collects large amounts of numerical data. 我的gae应用程序收集了大量的数字数据。 Instead of having users download it, is it possible to create a google docs spreadsheet and save the outgoing bandwidth? 除了让用户下载它之外,还可以创建一个google docs电子表格并保存传出带宽吗?

The idea is to create a google docs spreadsheet with the data which the user can then access and if he downloads the data to his computer, it would not count as bandwidth used by my application. 这个想法是用用户可以访问的数据创建一个google docs电子表格,如果他将数据下载到他的计算机上,则不算作我的应用程序使用的带宽。

To call external APIs over Http you, or the library that you use, would need to make URLFetch calls, which count towards outgoing quota . 要通过Http调用外部API,您或您使用的库将需要进行URLFetch调用,这将计入传出配额

So you would only save on outgoing bandwidth cost if all users downloaded the same data, eg no per-user generated data. 因此,如果所有用户都下载了相同的数据(例如,没有按用户生成的数据),则只会节省出站带宽成本。 Even then the limits dor Google Docs apply: spreadsheet of max 20Mb in size and max 400k cells. 即便如此,Google Docs也有限制:最大20Mb的电子表格和最多40万个单元的电子表格。

Also, in case of one shared spreadsheet you would not be able to control access to it. 同样,如果使用一个共享电子表格,您将无法控制对其的访问。 Everyone with the Url would be able to download it. 拥有网址的所有人都可以下载它。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM