You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
406 B

  1. from spiders.fdb_spider import *
  2. config = "spiders/config.yaml"
  3. list_of_fdbs = ["foerderinfo.bund.de"]
  4. # doing the crawling of government websites
  5. spider = fdb_spider(config)
  6. # spider.download_entry_list_pages_of_funding_databases(list_of_fdbs)
  7. spider.parse_entry_list_data2dictionary(list_of_fdbs)
  8. spider.download_entry_data_htmls(list_of_fdbs)
  9. # spider.parse_entry_data2dictionary(list_of_fdbs)