10 lines
263 B
Python
10 lines
263 B
Python
# Apache Licence 2.0
|
|
# Copyright 2023 François Pelletier
|
|
|
|
from urllib import parse
|
|
|
|
|
|
def extract_image_filename_thrivecart(url):
|
|
parsed_url = parse.urlparse(url)
|
|
filename = parse.unquote(parsed_url.path.split('/')[-1]).split('/')[-1]
|
|
return filename
|