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.

28 lines
695 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","evergabe-online"]
  7. #list_of_fdbs = ["foerderinfo.bund.de-bekanntmachungen"]
  8. list_of_fdbs = ["ted.europa.eu"]
  9. #list_of_fdbs = ["dtvp"]
  10. # doing the crawling of government websites
  11. spider = fdb_spider(config)
  12. spider.download_entry_list_pages_of_funding_databases(list_of_fdbs)
  13. #spider.find_config_parameter(list_of_fdbs)
  14. spider.parse_entry_list_data2dictionary(list_of_fdbs)
  15. #spider.download_entry_data_htmls(list_of_fdbs)
  16. #spider.parse_entry_data2dictionary(list_of_fdbs)