forked from TrueCloudLab/s3-tests
8 lines
275 B
Python
8 lines
275 B
Python
from boto.auth_handler import AuthHandler
|
|
|
|
class AnonymousAuthHandler(AuthHandler):
|
|
def __init__(self, host, config, provider):
|
|
AuthHandler.__init__(self, host, config, provider)
|
|
|
|
def add_auth(self, http_request, **kwargs):
|
|
return # Nothing to do for anonymous access!
|