ESHackathon / Keyword_Identification

Repository from Github https://github.comESHackathon/Keyword_IdentificationRepository from Github https://github.comESHackathon/Keyword_Identification

Keyword_Identification

Keyword Identification is a Python library that receives a JSON file with multiple references and returns a JSON with the keywords for each reference

input JSON example

{ 
    "references": [
        {
            "title": "Title here",
            "abstract": "Abstract here"
        },
        {
            "title": "Title 2 here",
            "abstract": "Abstract 2 "
        }
    ]
}

output JSON example

[
	["keyword 1", "keyword 2"],
	["keyword 3", "keyword 4"]
]

Usage example

python keyword_identification.py test.json out.json

License

MIT

About

License:MIT License


Languages

Language:Python 88.2%Language:Makefile 7.4%Language:Dockerfile 4.4%