Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre > Library Management

Notices

Reply
 
Thread Tools Search this Thread
Old 07-30-2021, 07:27 AM   #1
Blaineoreski
Zealot
Blaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcover
 
Blaineoreski's Avatar
 
Posts: 119
Karma: 16268
Join Date: Apr 2020
Device: none
Question Research Papers > Grabbing Metadata?

Hi,

I've got some long academic papers on my computer. Each have

DOI - https://en.wikipedia.org/wiki/Digital_object_identifier

numbers.

If I imported the documents into Calibre...is there any comparable way of automatically downloading the correct Metadata for title / author / other info that there is with books?

Like this - https://www.mobileread.com/forums/sh...d.php?t=340510 , but for academic papers.

Sincerely,

Blaine
Blaineoreski is offline   Reply With Quote
Old 07-30-2021, 07:44 PM   #2
McStubb
Connoisseur
McStubb began at the beginning.
 
Posts: 52
Karma: 10
Join Date: May 2014
Device: None
biggest issue is that there isnt a single source for DOI queries. Most of the APIs Ive seen only provide DOI info for documents that company has published.
McStubb is offline   Reply With Quote
Advert
Old 07-30-2021, 09:14 PM   #3
tlwright
Member
tlwright began at the beginning.
 
Posts: 24
Karma: 10
Join Date: Oct 2018
Device: Android tablet; Kindle PW; Fire 10
Zotero does the DOI lookups, and does the metadata lookup. There's a plugin, the Zotero Metadata Importer that will import a zotero export, adding the papers with correct metadata to Calibre and does custom columns. I haven't tried the import yet, I'm still adding in my collected papers to Zotero.
tlwright is offline   Reply With Quote
Old 08-15-2021, 05:24 AM   #4
Blaineoreski
Zealot
Blaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcover
 
Blaineoreski's Avatar
 
Posts: 119
Karma: 16268
Join Date: Apr 2020
Device: none
Ah! Got it. Thanks. Wish there was an easier way? I wonder if there's a website for DOI that returns all texts, and I could just copy and paste?
Blaineoreski is offline   Reply With Quote
Old 08-15-2021, 05:27 AM   #5
Blaineoreski
Zealot
Blaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcoverBlaineoreski exercises by bench pressing the entire Harry Potter series in hardcover
 
Blaineoreski's Avatar
 
Posts: 119
Karma: 16268
Join Date: Apr 2020
Device: none
Thumbs up

Here's something that may inspire the code-gifted among us:

Code:
looked at their url request structure: http://www.doi2bib.org/doi2bib + ?id= + {your doi here}.
then used their... well API to get the data (e.g. http://www.doi2bib.org/doi2bib?id=10.1016%2Fj.actpsy.2016.09.007) and the response is:
@article{Leinen_2016,
doi = {10.1016/j.actpsy.2016.09.007},
url = {http://dx.doi.org/10.1016/j.actpsy.2016.09.007},
year = 2016,
month = {nov},
publisher = {Elsevier {BV}},
volume = {171},
pages = {36--46},
author = {Peter Leinen and Stefan Panzer and Charles H. Shea},
title = {Hemispheric asymmetries of a motor memory in a recognition test after learning a movement sequence},
journal = {Acta Psychologica}
}
then you can parse it the way you want.
Blaineoreski is offline   Reply With Quote
Advert
Old 08-19-2021, 11:37 PM   #6
erymaxuk
Member
erymaxuk began at the beginning.
 
Posts: 18
Karma: 10
Join Date: Nov 2018
Location: Thailand
Device: jlalik14@gmail.com
Quote:
Originally Posted by Blaineoreski View Post
Here's something that may inspire the code-gifted among us:

Code:
looked at their url request structure: http://www.doi2bib.org/doi2bib + ?id= + {your doi here}.
then used their... well API to get the data (e.g. http://www.doi2bib.org/doi2bib?id=10.1016%2Fj.actpsy.2016.09.007) and the response is:
@article{Leinen_2016,
doi = {10.1016/j.actpsy.2016.09.007},
url = {http://dx.doi.org/10.1016/j.actpsy.2016.09.007},
year = 2016,
month = {nov},
publisher = {Elsevier {BV}},
volume = {171},
pages = {36--46},
author = {Peter Leinen and Stefan Panzer and Charles H. Shea},
title = {Hemispheric asymmetries of a motor memory in a recognition test after learning a movement sequence},
journal = {Acta Psychologica}
}
then you can parse it the way you want.

Using ZMI ist the best way to import articles and the metadata with it. After I created covers from the files. For further handling and display of articles I am using MSSQL server. I attached a screenhot of a journal collection of
articles. If you are more interested for my method , pm me.
Attached Thumbnails
Click image for larger version

Name:	2021-08-20a.jpg
Views:	138
Size:	818.6 KB
ID:	188790  
erymaxuk is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Reader For Research Papers (8.5x11 PDFs) roninmedia Which one should I buy? 8 09-27-2014 10:17 PM
Organizing and handling PDF Corporate Whitepapers and Academic Research Papers? crashnburn Library Management 2 03-25-2013 07:48 AM
grabbing Wikipedia articles moe Calibre 2 08-29-2011 04:06 PM
iPhone Best Reader for Research Papers fozzy40 Apple Devices 12 08-22-2010 06:00 AM


All times are GMT -4. The time now is 11:41 PM.


MobileRead.com is a privately owned, operated and funded community.