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.

25 lines
559 B

  1. from spiders.fdb_spider import *
  2. import sys
  3. config = "spiders/config.yaml"
  4. #list_of_fdbs = eval(sys.argv[1])
  5. list_of_fdbs = ["giz","evergabe-online","foerderinfo.bund.de-bekanntmachungen"]
  6. #list_of_fdbs = ["giz"]
  7. # doing the crawling of government websites
  8. spider = fdb_spider(config)
  9. spider.download_entry_list_pages_of_funding_databases(list_of_fdbs)
  10. #spider.find_config_parameter(list_of_fdbs)
  11. spider.parse_entry_list_data2dictionary(list_of_fdbs)
  12. spider.download_entry_data_htmls(list_of_fdbs)
  13. spider.parse_entry_data2dictionary(list_of_fdbs)