requests-html

Requests-HTML: HTML Parsing for Humans (writing Python 3)! — requests-HTML v0.3.4 documentation

from requests_html import HTMLSession

session = HTMLSession()
r = session.get('https://www.jleague.jp/sp/club/sapporo/day/#player')

# URL抽出 相対リンク
r.html.links

# URL抽出 絶対リンク
r.html.absolute_links

# CSSセレクタ
about = r.html.find('#about', first=True)

# xpath
r.html.xpath('a')

# テキスト検索
r.html.search('Python is a {} language')[0]

# テキスト
about.text

# 属性
about.attrs

# HTML
about.html

about.find('a')

# Javascriptレンダリング
r.html.render()