Invenio Developer Forum 2015-06-29 DoJSON

Europe/Zurich
31/S-023 (CERN)

31/S-023

CERN

22
Show room on map
Description

The Invenio Developer Forum takes place every Monday at 16:45 CET/CEST and can be accessed via teleconferencing at https://vidyoportal.cern.ch/flex.html?roomdirect.html&key=ygjcGzMEk8re

    • 16:45 17:15
      DoJSON 30m
      Speaker: Jiri Kuncar (CERN)

      About

      Simple Pythonic JSON to JSON converter.

       

      Example

      from dojson.contrib.marc21.utils import create_record, split_blob

      from dojson.contrib.marc21 import marc21

      r = [create_record(r) for r in split_blob(open('./search?ln=en&p=&of=xm&rg=9000').read())]

      %timeit r = [create_record(r) for r in split_blob(open('./search?ln=en&p=&of=xm&rg=9000').read())]

      r = [create_record(r) for r in split_blob(open('./search?ln=en&p=&of=xm&rg=9000').read())]

      rr = [marc21.do(x) for x in r]

      %timeit rr = [marc21.do(x) for x in r]

      %prun rr = [marc21.do(x) for x in r]

       

       

      Discussion

      • repeatable subfields needed
      • 260 $a [ foo $c bar] technique not needed