opensearch is a python library for talking to opensearch servers. Both v1.0 and v1.1 interactions are supported. You can find out more about opensearch at opensearch.org.
Here's the basic idea:
from opensearch import Client
client = Client(description_url)
results = client.search('zx81')
for result in results:
print result.title, result.link
If you have a template with some non-standard query parameters like key
in
this template:
<Url type="application/atom+xml" template="http://example.org/search?q={searchTerms}&start={startIndex?}&count={resultSize?}&key={key}"/>
you can send the parameter like so:
results = client.search('zx81', key="abc123")
If the template happens to use a namespace prefix, as in this real example
from the OCLC Worldcat API, which uses wcapi:wskey
:
<Url type="application/atom+xml" xmlns:wcapi="http://www.worldcat.org/devnet/wiki/SearchAPIDetails" template="http://worldcat.org/webservices/catalog/search/worldcat/opensearch?q={searchTerms}&start={startIndex?}&count={resultSize?}&format=atom&wskey={wcapi:wskey}&cformat={wcapi:cformat?}"/>
You can supply wcapi:wskey
using the underscore notation:
results = client.search('zx81', wcapi__wskey="abc123")
If you run into trouble and would like to see what URLs are being accessed behind the scenes, turn on logging and set the log level to DEBUG:
import logging
logging.basicConfig(level=logging.DEBUG)
The opensearch code itself has been released under the GPL.
One exception is that the distro bundles Mark Pilgrim's Universal Feed Parser, which is licensed separately under the MIT license. See opensearch/osfeedparser.py for details on Mark's license.
Ed Summers ehs@pobox.com