mirror of
				https://github.com/ytdl-org/youtube-dl
				synced 2025-11-04 03:33:46 +00:00 
			
		
		
		
	Simplify url_basename
Use urlparse from the standard library.
This commit is contained in:
		
							parent
							
								
									6086d121cb
								
							
						
					
					
						commit
						9b8aaeed85
					
				@ -1092,7 +1092,5 @@ def remove_start(s, start):
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def url_basename(url):
 | 
			
		||||
    m = re.match(r'(?:https?:|)//[^/]+/(?:[^?#]+/)?([^/?#]+)/?(?:[?#]|$)', url)
 | 
			
		||||
    if not m:
 | 
			
		||||
        return u''
 | 
			
		||||
    return m.group(1)
 | 
			
		||||
    path = compat_urlparse.urlparse(url).path
 | 
			
		||||
    return path.strip(u'/').split(u'/')[-1]
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user