#72: BibMatch: query remote installations
-------------------------+--------------------------------------------------
Reporter: simko | Owner:
Type: enhancement | Status: new
Priority: major | Milestone:
Component: BibMatch | Version:
Keywords: |
-------------------------+--------------------------------------------------
Comment(by jcaffaro):
I have attached a script that more or less does this job, using search
engine '''HTTP''' API.
It has several limitations (incl. no support for authentication, i.e.
restricted records are not returned), but can be used at least as starting
point to test running BibMatch with remote repositories.
'''Usage:'''
{{{
from InvenioConnector import *
cds = InvenioConnector("http://cdsweb.cern.ch")
results = cds.search("higgs")
for record in results[:10]:
print record["245__a"][0]
print record["520__b"][0]
for author in record["100__"]:
print author["a"][0], author["u"][0]
}}}
--
Ticket URL: <http://invenio-software.org/ticket/72#comment:1>
Invenio <http://invenio-software.org>