WaYdotNET / urllib_s3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

urllib_s3

Downloads

urllib_s3 is a urllib handler for s3 protocol

Usage

install library

pip install urllib_s3
from six.moves.urllib.request import urlopen
import urllib_s3

server_settings = {
    'server-url': {
        'access_key': 'xx',
        'secret_key': 'xxx',
        'secure': True
    }
}

urllib_s3.setup(server_settings)

# now you use s3 protocol
urlopen('s3://server-url/bucket/foo.png')

About

License:MIT License


Languages

Language:Python 100.0%