2014-08-28 10:57:43 -04:00

12 lines
264 B
Python

from __future__ import unicode_literals
from six.moves.urllib.parse import urlparse
def bucket_name_from_url(url):
pth = urlparse(url).path.lstrip("/")
l = pth.lstrip("/").split("/")
if len(l) == 0 or l[0] == "":
return None
return l[0]