我有一个 python 脚本在 Google App Engine 中运行,带有 boto 1.9b,它获取 S3-Bucket 中的所有密钥。输出格式为 HTML 表。
bucket_instance = conn_s3.get_bucket(bucketname)
liste_keys = bucket_instance.get_all_keys()
table = '<table>'
for i in range(laenge_liste_keys):
table = table + '<tr><td>'+str(liste_keys[i].name)+</td></tr>'
table = '</table>'
如何将密钥名称实现为使用户能够通过浏览器下载密钥的链接?
提前致谢!