moto/moto/s3bucket_path/responses.py
2014-08-27 11:33:55 -04:00

17 lines
371 B
Python

from __future__ import unicode_literals
from .models import s3bucket_path_backend
from .utils import bucket_name_from_url
from moto.s3.responses import ResponseObject
def parse_key_name(pth):
return "/".join(pth.rstrip("/").split("/")[2:])
S3BucketPathResponseInstance = ResponseObject(
s3bucket_path_backend,
bucket_name_from_url,
parse_key_name,
)