The below is the HTML code which I'm trying to scrape
<div class="data-point-container section-break">
    # some other HTML div classes here which I don't need
    <table class data-bind="showHidden: isData">
          <!-- ko foreach : sections -->
        <thead>...</thead>
        <tbody>...</tbody>
        <thead>...</thead>
        <tbody>...</tbody>
        <thead>...</thead>
        <tbody>...</tbody>
        <thead>...</thead>
        <tbody>...</tbody>
        <thead>...</thead>
        <tbody>...</tbody>
          <!-- /ko -->
    </table>
</div>
How do I use Pandas.read_html to scrape all these information, having thead as headers, and tbody as values?
EDIT:
This is the site that I'm trying to scrape, and have the data extracted into Pandas Dataframe. Link here