Hello World
More ExamplesEven More Examples"' links = re.findall(']*)', text) print(links) $ python3 get_url_from_html.py ['http://example.com', 'http://example2.com'] import requests import re def get_urls(url): response = requests.get(url) html = response.text urls = re.findall(']*)', html) return urls urls = get_urls('https://gihyo.jp/book/list') print(urls) $ python3 get_images_02.py ['/book', '/site/inquiry', '/site/profile', … コンソール出⼒ コンソール出⼒ HTMLからURLを抜き出すプログラム: /chapter8/get_url_from_html.py 指定したURLにアクセスしてURLを抜き出すプログラム: /chapter8/get_images_02.py