Skip to content

Instantly share code, notes, and snippets.

View J535D165's full-sized avatar

Jonathan de Bruin J535D165

View GitHub Profile
@J535D165
J535D165 / keyword_abstract_ris.py
Created October 26, 2022 13:58
Add keywords to the abstract field of a RIS file
import rispy
entries_new = []
with open('test.ris', 'r') as bibliography_file_in:
entries = rispy.load(bibliography_file_in)
for entry in entries:
entry_new = entry.copy()
if "keywords" in entry:
@J535D165
J535D165 / tasks.json
Last active March 22, 2024 09:46
Start ASReview LAB development environment
{
"version": "2.0.0",
"tasks": [
{
"label": "startBackendServer",
"type": "shell",
"command": "${command:python.interpreterPath}",
"args": ["-m",
"flask",
"run",