mirror of
https://github.com/ceph/s3-tests.git
synced 2024-11-22 09:29:43 +00:00
5 lines
176 B
Python
5 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!
|