Could someone please help me with the syntax to scrape “Releases” information, from page https://github.com/pascallanger/DIY-Multiprotocol-TX-Module
import requests
from bs4 import BeautifulSoup
import lxml
import re
# URL for the table
url = 'https://github.com/pascallanger/DIY-Multiprotocol-TX-Module'
html = requests.get(url).text
#import into BS
soup = BeautifulSoup(html, "lxml")
for item_name in soup.find_all(href=re.compile("??????????")):
print(item_name.text)