You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are better ways to handle it for sure but for my own use I added:
url_only = str(url).split('/')[-1]
filename = date_created + url_only
filename = filename[:9] + filename[int(len(url_only)/3):]
it cuts the name from the URL to 1/3
on line 270
The text was updated successfully, but these errors were encountered:
There are better ways to handle it for sure but for my own use I added:
url_only = str(url).split('/')[-1]
filename = date_created + url_only
filename = filename[:9] + filename[int(len(url_only)/3):]
it cuts the name from the URL to 1/3
on line 270
The text was updated successfully, but these errors were encountered: