Skip to content

Commit

Permalink
v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mciccale committed Feb 14, 2024
1 parent d64d117 commit 4272bdd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors:
orcid: https://orcid.org/0009-0000-8821-0587
title: 'ScholarVista'
license: Apache-2.0
version: '0.1.2'
version: '0.1.3'
doi: '10.5281/zenodo.10654760'
date-released: 2024-02-13
url: 'https://github.com/mciccale/ScholarVista'
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"datePublished": "2024-02-14",
"dateModified": "2024-02-14",
"name": "ScholarVista",
"version": "0.1.2",
"version": "0.1.3",
"identifier": "10.5281/zenodo.10654760",
"description": "ScholarVista is a tool that analyzes research papers and extracts and plots information from them. It utilizes Grobid, a library for extracting content from research papers, to extract all the relevant data. The extracted data is then plotted and displayed using Python.",
"applicationCategory": "Research",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "scholarvista"
version = "0.1.2"
version = "0.1.3"
description = "ScholarVista is a tool that analyzes research papers and extracts and plots information from them. It utilizes Grobid, a library for extracting content from research papers, to extract all the relevant data. The extracted data is then plotted and displayed using Python."
authors = ["mciccale <[email protected]>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion scholarvista/cli/utils/generate_keyword_clouds.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ def generate_keyword_clouds(parsed_data: dict[str, dict[str, str | int]],
title='All Abstracts').generate().save_to_file(dir_path=output_dir)

# Generate a keyword cloud for every abstract
for title, abstract in titles, abstracts:
for title, abstract in zip(titles, abstracts):
KeywordCloud(text=abstract,
title=title).generate().save_to_file(dir_path=path.join(output_dir, title))

0 comments on commit 4272bdd

Please sign in to comment.