Browse Source

[utils] Remove unused function

totalwebcasting
Sergey M․ 9 years ago
parent
commit
c7b959ce38
1 changed files with 0 additions and 9 deletions
  1. +0
    -9
      youtube_dl/utils.py

+ 0
- 9
youtube_dl/utils.py View File

@ -259,15 +259,6 @@ def get_element_by_attribute(attribute, value, html):
return unescapeHTML(res)
def extract_attributes(attributes_str, attributes_regex=r'(?s)\s*([^\s=]+)\s*=\s*["\']([^"\']+)["\']'):
attributes = re.findall(attributes_regex, attributes_str)
attributes_dict = {}
if attributes:
for (attribute_name, attribute_value) in attributes:
attributes_dict[attribute_name] = attribute_value
return attributes_dict
def clean_html(html):
"""Clean an HTML snippet into a readable string"""


Loading…
Cancel
Save