Skip to content

Commit

Permalink
Merge pull request #111 from semantic-systems/huntila-patch-1
Browse files Browse the repository at this point in the history
Update main.py
  • Loading branch information
huntila authored Jul 10, 2023
2 parents 53c1369 + 5c60183 commit 79807c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from objects import Person, Zenodo, Article, Dataset, Presentation, Poster, Software, Video, Image, Lesson, Institute, Funder, Publisher, Gesis, Cordis, Orcid, Gepris
from flask import Flask, render_template, request, make_response
import threading
import dblp, zenodo, openalex, resodate, wikidata, cordis, gesis, orcid, gepris, eulg
import dblp, zenodo, openalex, resodate, wikidata, cordis, gesis, orcid, gepris # , eulg
import details_page

logging.config.fileConfig(os.getenv('LOGGING_FILE_CONFIG', './logging.conf'))
Expand Down Expand Up @@ -45,7 +45,7 @@ def sources():
# add all the sources here in this list; for simplicity we should use the exact module name
# ensure the main method which execute the search is named "search" in the module
# sources = [dblp, zenodo, openalex, resodate, wikidata, cordis, gesis]
sources = [dblp, zenodo, openalex, resodate, wikidata, cordis, gesis, orcid, gepris, eulg]
sources = [dblp, zenodo, openalex, resodate, wikidata, cordis, gesis, orcid, gepris] #, eulg]

for source in sources:
t = threading.Thread(target=source.search, args=(search_term, results,))
Expand Down

0 comments on commit 79807c2

Please sign in to comment.