Preparing git repo for final project

This commit is contained in:
2023-07-09 11:19:26 +02:00
parent 6a38966eef
commit 63d06d6b35
67 changed files with 1587 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import re
youtube_regex = re.compile(r"<iframe.*https?://(?:www\.)?youtube\.com/embed/(\w+).*</iframe>")
def main():
print(parse(input("HTML: ")))
def parse(s):
video_id = youtube_regex.search(s)
if video_id:
video_id = video_id.groups()[0]
else:
return None
return f"https://youtu.be/{video_id}"
if __name__ == "__main__":
main()