So as Eric pointed out the table is being populated by JavaScript.
However, is quite easy to intercept the API call the page is doing internally by using Chrome's developer tools.
Go to network tab and filter by XHR and you will find the endpoint the page is making calls to, which is
http://gsa.nic.in/gsaservice/services/service.svc/gsastatereport?schemecode=PMJDY
Then a simple script like this will get you the data nicely formatted
import json
import pandas as pd
import requests
r = requests.get('http://gsa.nic.in/gsaservice/services/service.svc/gsastatereport?schemecode=PMJDY')
data = json.loads(r.json()['d'])
pd.DataFrame(data[0]['data'])
LGDStateCode StateName totalSaturatedVillage villageSaturatedTillDate TotalBeneficiaries TotalBeneficiariesRegisteredTillDate Saturation
0 28 ANDHRA PRADESH 305 305 27238 27238 100.00
1 12 ARUNACHAL PRADESH 299 283 42331 39999 94.49
2 18 ASSAM 3042 2375 648815 621878 95.85
3 10 BIHAR 635 544 92356 90131 97.5