[docs]classTurkey(CountryTestBase):location="Turkey"source_url="https://covid19.saglik.gov.tr/TR-66935/genel-koronavirus-tablosu.html"source_url_ref=source_urlunits="tests performed"source_label="Turkish Ministry of Health"rename_columns={"Tarih":"Date","Toplam Test Sayısı":"Cumulative total","Bugünkü Test Sayısı":"Daily change in cumulative total",}
[docs]def_parse_table(self):withget_driver()asdriver:# with webdriver.Chrome() as driver:driver.get(self.source_url)table=driver.find_element_by_class_name("table-striped")returntable.get_attribute("outerHTML")
[docs]defpipe_filter(self,df:pd.DataFrame):returndf[["Tarih","Bugünkü Test Sayısı"]].dropna()