Skip to content

Instantly share code, notes, and snippets.

@deeplycloudy
Created June 1, 2021 22:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deeplycloudy/4d5ff7e1bf4a9ace6230a0cdadc36e93 to your computer and use it in GitHub Desktop.
Save deeplycloudy/4d5ff7e1bf4a9ace6230a0cdadc36e93 to your computer and use it in GitHub Desktop.
DOI URLs scraped from webpages
# Here’s the URL to a journal’s search results page for papers from the Geostationary Lightning Mapper that
# were published from 2018-2021. There are several pages of results; below is an example of the third and final URL
# Download the webpage. Do this for each page of the search results, changing the URL and output filename:
curl "https://journals.ametsoc.org/search?access_0=all&fromDate=2018&page=3&pageSize=50&q1=geostationary+lightning+mapper&sort=relevance&toDate=2021" > page3dois.txt
# Then concatenate all three files, and save out just the DOIs linked on each page.
cat page[1-3]dois.txt | grep -Eoi '<a [^>]+>' |
grep -Eo 'href="[^\"]+"' | grep -Eo '(http|https)://doi.org/[\.0-9]+/[^/"<]+' | sort | uniq > page_dois.txt
# Finally, get bibtex using the doi.org service
cat page_dois.txt | xargs -n1 curl -LH "Accept:text/bibliography; style=bibtex" >> saved_refs.bib
@deeplycloudy
Copy link
Author

Lines 10 and 11 should be all one line.

@deeplycloudy
Copy link
Author

Add to curl the flags -j -L -c cookies.txt -b cookies.txt to follow references and enable cookies, saved to a cookies.txt file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment