I want to obtain the values from a query at NCBI database. The page from which I want to extract the table is https://www.ncbi.nlm.nih.gov/search/?term=%22PROTEIN+FATE%22
I've tried to obtain the tables via LibreOffice and Pandas
import pandas as pd
tables = pd.read_html("https://www.ncbi.nlm.nih.gov/search/?term=%22PROTEIN+FATE%22")
On both situations, the resullts are:
However, instead of "searching", I was expecting to obtain the numeric values as shown:
Is there any intuitive way of doing this?
Thx!