みてるぞ 4 months ago
parent
commit
32ecf2d00f
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      module.py

+ 4
- 4
module.py View File

@@ -38,12 +38,12 @@ def fetch_video_info (
return None return None
title = '-'.join (title_tag.text.split ('-')[:(-1)]).strip () title = '-'.join (title_tag.text.split ('-')[:(-1)]).strip ()


# type: ignore
tags_str: str = bs.find ('meta', attrs = { 'name': 'keywords' }).get ('content')
tags_str: str = (bs.find ('meta', attrs = { 'name': 'keywords' })
.get ('content')) # type: ignore
tags = tags_str.split (',') tags = tags_str.split (',')


# type: ignore
description = bs.find ('meta', attrs = { 'name': 'description' }).get ('content')
description = (bs.find ('meta', attrs = { 'name': 'description' })
.get ('content')) # type: ignore
except (AttributeError, TypeError): except (AttributeError, TypeError):
return None return None




Loading…
Cancel
Save