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