Skip to content

Commit

Permalink
Merge pull request #585 from KnowledgeCaptureAndDiscovery/dev
Browse files Browse the repository at this point in the history
adding feature for extract related papers
  • Loading branch information
dgarijo authored Jul 14, 2023
2 parents ddb0479 + 8d17777 commit 4e5dbdd
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
Binary file modified docs/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/somef/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

__version__ = "0.9.3"
__version__ = "0.9.4"
2 changes: 1 addition & 1 deletion src/somef/export/turtle_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def reconcile_somef_data(data):
# if it is not a list, just get the excerpt
else:
out[key] = value[constants.PROP_RESULT][constants.PROP_VALUE]
# print(out)
print(out)
return out

@staticmethod
Expand Down
1 change: 1 addition & 0 deletions src/somef/somef_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ def cli_get_data(threshold, ignore_classifiers, repo_url=None, doc_src=None, loc
readme_source)
repository_metadata = regular_expressions.extract_images(unfiltered_text, repo_url, local_repo,
repository_metadata, readme_source, def_branch)
repository_metadata = regular_expressions.extract_arxiv_links(unfiltered_text,repository_metadata,readme_source)
logging.info("Completed extracting regular expressions")
return repository_metadata

Expand Down

0 comments on commit 4e5dbdd

Please sign in to comment.