2

EC2インスタンスにいくつかのPythonモジュールをインストールしたいと思います。S3バケットへのインストールに必要なファイルがあります。Python botoを介してEC2インスタンスからS3バケットに接続することもできますが、バケットのコンテンツにアクセスして、インストールする必要のあるソースファイルを取得できません。

4

2 に答える 2

6

botoを介してPythonでファイルを取得したい場合に備えて、簡単な例を次に示します。

https://gist.github.com/1925584

また、次のリンクが気に入らない場合は、次のようにします。

import boto
import os

def download_keys(bucket_name, dst_dir):
    """
    Very simple example showing how to download all keys in a bucket.
    Assumes key names don't include path separators.  Also assumes that
    you don't have zillions of objects in the bucket.  If you have a lot
    you would want to get several download operations going in parallel.
    """
    s3 = boto.connect_s3()
    bucket = s3.lookup(bucket_name)
    for key in bucket:
        path = os.path.join(dst_dir, key.name)
        key.get_contents_to_filename(path)
于 2012-05-05T13:17:11.123 に答える
2

s3cmd ツール (http://s3tools.org/s3cmd) を使用すると、バケットに保存されているファイルをダウンロード/アップロードできます。

于 2012-05-05T11:42:03.290 に答える