<div dir="ltr"><div>I had the similar needs a few years ago and here is what I did:<br></div><br>1. Make the query as you need using NCBI pubmed GUI and mine looks like<br>query = Entrez.esearch(db="pubmed", term='(publisher[sb] AND ("%s"[Date - Publication]:"%s"[Date - Publication])' % (last_update, current), usehistory="y")<br><br>2. Process the query records<br> records=Entrez.read(query)<br>    query.close()<br><br>    count = int(records["Count"])<br>    webenv = records["WebEnv"]<br>    querykey = records["QueryKey"]<br><br><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Dec 3, 2015 at 6:38 AM,  <span dir="ltr"><<a href="mailto:c.buhtz@posteo.jp" target="_blank">c.buhtz@posteo.jp</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">A little bit off-topic.<br>
<br>
I did some search/fetch/analyse with Entrez and and the end I have a<br>
list of PubMed-IDs (e.g. in a text-file, on id per line) - nearly 1000.<br>
<br>
How can I view/display that list on the Pubmed-Website? I mean I want<br>
to search for all PMIDs on the Website and show the result.<br>
<span class="HOEnZb"><font color="#888888">--<br>
GnuPGP-Key ID 0751A8EC<br>
_______________________________________________<br>
Biopython mailing list  -  <a href="mailto:Biopython@mailman.open-bio.org">Biopython@mailman.open-bio.org</a><br>
<a href="http://mailman.open-bio.org/mailman/listinfo/biopython" rel="noreferrer" target="_blank">http://mailman.open-bio.org/mailman/listinfo/biopython</a><br>
</font></span></blockquote></div><br></div>