Scripts posted recently tagged to koha in Kelpi

1- 2 of 2.

Retrieve a marc bib entry from koha

to koha marc sql by nando.quintana

select tag, subfieldcode, subfieldvalue, tagorder, subfieldorder  
from marc_subfield_table where bibid = '565'
order by tag, tagorder, subfieldcode, subfieldorder;

Read items directly from a Koha mysql database

to koha mysql python by nando.quintana

#!/usr/local/bin/python2.4
# -*- coding: utf-8 -*-
import MySQLdb
import os
import re
hits counter