Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve pubmed query script #17

Open
fedorov opened this issue Apr 20, 2017 · 0 comments
Open

Improve pubmed query script #17

fedorov opened this issue Apr 20, 2017 · 0 comments

Comments

@fedorov
Copy link
Collaborator

fedorov commented Apr 20, 2017

The script should work as follows:

  1. Take as input JSON file of search results produced by Google Scholar query
  2. query all keywords for each article in the input JSON file
  3. Save the result as a new JSON file by adding "keywords" attribute to the dictionary from Google Scholar.

Example:

Article item from the input JSON:

  {
    "type": "article",    "title": "title1",    "author": "author1",    "journal": "European Respiratory Journal",    "volume": "44",
    "number": "2",
    "pages": "341-350",
    "year": "2014"
  },

Output:

  {
    "type": "article",    "title": "title1",    "author": "author1",    "journal": "European Respiratory Journal",    "volume": "44",
    "number": "2",
    "pages": "341-350",
    "year": "2014",
    "keywords": ["head cancer", "leg cancer"]
  },
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant