Skip to content

ESHackathon/Keyword_Identification

Repository files navigation

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

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published