Skip to content

Instantly share code, notes, and snippets.

@edsu
edsu / worldcat_live.py
Last active December 1, 2016 17:36
A Python module for interacting with the experimental OCLC Worldcat Live API.
#!/usr/bin/env python
"""
This is mainly a demonstration of OCLC's experimental Worldcat Live API [1]
from Python. You should be able to use this module like so:
import worldcat_live
for item in worldcat_live.items():
print item["title"]
@lawlesst
lawlesst / search_z3950.py
Created July 23, 2011 13:09
Sample Z39.50 search with Python.
"""
Simple script to search a Z39.50 target using Python
and PyZ3950.
"""
from PyZ3950 import zoom
ISBNs = ['9781905017799', '9780596513986']