CannyLab / cannylab.github.io

CannyLab Website
1 stars 15 forks source link

Add Papers section #2

Closed rmrao closed 4 years ago

rmrao commented 4 years ago

Add a papers section w/ automatic search over John's google scholar profile:

This may be useful as an example.

DavidMChan commented 4 years ago

The right query for this would be something like:

https://scholar.google.com/citations?hl=en&user=LAv0HTEAAAAJ&view_op=list_works&sortby=pubdate&pagesize=80

However you have to write some code to parse out the actual table.

Somebody has done this in PHP: https://github.com/dschreij/scholar_parser

rmrao commented 4 years ago

This might also help: https://github.com/toolbuddy/ScholarJS

DavidMChan commented 4 years ago

One thing that might be worth mentioning is that auto-filling the papers section won't give us the ability to add links to code, or other useful things like pull the abstract to the website. If this is functionality that we want, perhaps it's best to add papers manually (or perhaps create some kind of form that people can use to add a paper).

DavidMChan commented 4 years ago

So, I think the closest we can get to clean data is this:

https://scholar.google.com/citations?user=LAv0HTEAAAAJ&view_op=list_works&pagesize=100&json

It'll require a bit of parsing - but I don't think there's anything else we can do.