Last active
August 29, 2015 14:04
Revisions
-
miku revised this gist
Aug 24, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ On MARC and JSON ================ Different JSON serializations of MARC records ([yaz](http://www.indexdata.com/yaz/doc/yaz-marcdump.html) vs [marctools](https://github.com/ubleipzig/marctools)). $ marctojson -p -l fixtures/journals.mrc -
miku revised this gist
Aug 24, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ On MARC and JSON ================ Different JSON serializations of MARC records. -
miku revised this gist
Aug 24, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ MARC and JSON ============= Different JSON serializations of MARC records. -
miku revised this gist
Aug 5, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,7 +9,7 @@ versus $ yaz-marcdump -i marc -o json fixtures/journals.mrc The `marctojson` output format was created with an indexing use case in mind, but seems to be a bit more suitable for programmatic access as well: >>> mt = json.loads(open("marctools.json").read()) -
miku revised this gist
Aug 5, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -20,7 +20,7 @@ To find the second value of the subfield `w` of the first `780` field one would >>> mt['780'][0]['w'][1] u'(DLC) 72000647' Whereas the yaz output is a bit more verbose and opaque, since the main field data structure is a list. Either one knows the field positions (e.g. 26 and 3): >>> yz['fields'][26]['780']['subfields'][3]['w'] u'(DLC) 72000647' -
miku revised this gist
Aug 5, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -22,13 +22,13 @@ To find the second value of the subfield `w` of the first `780` field one would Whereas the yaz output is a bit more verbose and opaque, since the main field data structure is a list. Either one knows the field position: >>> yz['fields'][26]['780']['subfields'][3]['w'] u'(DLC) 72000647' Or one loops over the fields: >>> values = [] >>> for field in yz['fields']: ... for key, value in field.iteritems(): ... if key == '780': ... for subfield in value['subfields']: -
miku revised this gist
Aug 5, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,7 +9,7 @@ versus $ yaz-marcdump -i marc -o json fixtures/journals.mrc The `marctojson` output format was created with an indexing use case, but seems to be a bit more suitable for programmatic access as well: >>> mt = json.loads(open("marctools.json").read()) -
miku renamed this gist
Aug 5, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
miku revised this gist
Aug 5, 2014 . 1 changed file with 40 additions and 0 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,40 @@ README ====== Different JSON serializations of MARC records. $ marctojson -p -l fixtures/journals.mrc versus $ yaz-marcdump -i marc -o json fixtures/journals.mrc The `marctojson` output format was created with an indexing use case, but seems to be a bit more suitable for programmatic access: >>> mt = json.loads(open("marctools.json").read()) >>> yz = json.loads(open("yaz.json").read()) To find the second value of the subfield `w` of the first `780` field one would write with the marctools output: >>> mt['780'][0]['w'][1] u'(DLC) 72000647' Whereas the yaz output is a bit more verbose and opaque, since the main field data structure is a list. Either one knows the field position: >>> y['fields'][26]['780']['subfields'][3]['w'] u'(DLC) 72000647' Or one loops over the fields: >>> values = [] >>> for field in y['fields']: ... for key, value in field.iteritems(): ... if key == '780': ... for subfield in value['subfields']: ... for kk, vv in subfield.iteritems(): ... if kk == 'w': ... values.append(vv) >>> values[1] u'(DLC) 72000647' -
miku revised this gist
Aug 5, 2014 . 1 changed file with 310 additions and 228 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,230 +1,312 @@ { "001": "testsample1", "005": "20091117105557.0", "008": "840328d19831987nyufx1p o 0 a0eng d", "010": [ { "a": [ " 84643014 //r88" ], "ind1": " ", "ind2": " ", "z": [ "sn 84011556 " ] } ], "022": [ { "a": [ "0748-1985" ], "ind1": "0", "ind2": " " } ], "032": [ { "a": [ "002051" ], "b": [ "USPS" ], "ind1": " ", "ind2": " " } ], "035": [ { "a": [ "ocm10569413" ], "ind1": " ", "ind2": " " } ], "037": [ { "b": [ "Human Sciences Press, Inc., 72 5th Ave., New York, N.Y. 10011" ], "ind1": " ", "ind2": " " } ], "040": [ { "a": [ "KSW" ], "c": [ "KSW" ], "d": [ "CLU", "AIP", "NST", "DLC", "NSD", "NST", "DLC", "HUL", "NST", "NSD", "NLM", "NST", "NSD", "NST", "NSD", "DLC", "NST", "NSD", "NST", "CLU", "NST", "OCL", "PVU" ], "ind1": " ", "ind2": " " } ], "049": [ { "a": [ "PVUP[SERIAL]" ], "ind1": " ", "ind2": " " } ], "050": [ { "a": [ "AC489.R3" ], "b": [ "J68" ], "ind1": "0", "ind2": "0" } ], "210": [ { "a": [ "J. ration. emot. ther." ], "ind1": "0", "ind2": " " } ], "222": [ { "a": [ "Journal of rational emotive therapy" ], "ind1": " ", "ind2": "0" } ], "245": [ { "a": [ "Journal of rational emotive therapy :" ], "b": [ "the journal of the Institute for Rational-Emotive Therapy." ], "ind1": "0", "ind2": "0" } ], "246": [ { "a": [ "Journal of rational-emotive therapy" ], "ind1": "1", "ind2": "3" } ], "260": [ { "a": [ "[New York] :" ], "b": [ "The Institute," ], "c": [ "1983-1987." ], "ind1": " ", "ind2": " " } ], "300": [ { "a": [ "5 v. :" ], "b": [ "ill. ;" ], "c": [ "26 cm." ], "ind1": " ", "ind2": " " } ], "310": [ { "a": [ "Two no. a year" ], "ind1": " ", "ind2": " " } ], "362": [ { "a": [ "Vol. 1, no. 1 (fall 1983)-v. 5, no. 4 (winter 1987)." ], "ind1": "0", "ind2": " " } ], "500": [ { "a": [ "Title from cover." ], "ind1": " ", "ind2": " " }, { "a": [ "Vols. for u003cspring 1985-u003e published by Human Sciences Press, Inc." ], "ind1": " ", "ind2": " " } ], "515": [ { "a": [ "Vol. 1 has only one issue." ], "ind1": " ", "ind2": " " } ], "650": [ { "a": [ "Rational-emotive psychotherapy" ], "ind1": " ", "ind2": "0", "v": [ "Periodicals." ] }, { "a": [ "Cognitive therapy" ], "ind1": " ", "ind2": "0", "v": [ "Periodicals." ] }, { "a": [ "Psychotherapy" ], "ind1": " ", "ind2": "2", "v": [ "periodicals." ] } ], "710": [ { "a": [ "Institute for Rational-Emotive Therapy (New York, N.Y.)" ], "ind1": "2", "ind2": " " } ], "780": [ { "ind1": "0", "ind2": "0", "t": [ "Rational living" ], "w": [ "(OCLC)1763461", "(DLC) 72000647" ], "x": [ "0034-0049" ] } ], "785": [ { "ind1": "0", "ind2": "0", "t": [ "Journal of rational-emotive and cognitive-behavior therapy" ], "w": [ "(DLC) 88648219", "(OCoLC)16307814" ], "x": [ "0894-9085" ] } ], "leader": { "ba": "361", "cs": "a", "ic": "2", "impldef": "s 1a ", "length": "1571", "lol": "4", "losp": "5", "raw": "01571cas a22003611a 4500", "sfcl": "2", "status": "c", "type": "a" } } -
miku revised this gist
Aug 5, 2014 . 1 changed file with 14 additions and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -211,7 +211,20 @@ "0748-1985" ] } ], "leader": { "ba": "301", "cs": "a", "ic": "2", "impldef": "s 1a ", "length": "1195", "lol": "4", "losp": "5", "raw": "01195cas a22003011a 4500", "sfcl": "2", "status": "c", "type": "a" } }, "meta": {} } -
miku revised this gist
Aug 5, 2014 . 2 changed files with 0 additions and 6234 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -215,2483 +215,3 @@ }, "meta": {} } -
miku revised this gist
Aug 5, 2014 . 1 changed file with 2697 additions and 0 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2697 @@ { "content": { "001": "testsample2", "005": "20091117105643.0", "007": "hd bfa b|c|", "008": "751101d19661983nyufr1p 0 a0eng ", "010": [ { "a": [ " 72000647 //r852" ], "ind1": " ", "ind2": " " } ], "022": [ { "a": [ "0034-0049" ], "ind1": "0", "ind2": " " } ], "030": [ { "a": [ "ATLVBX" ], "ind1": " ", "ind2": " " } ], "035": [ { "a": [ "ocm01763461" ], "ind1": " ", "ind2": " " } ], "040": [ { "a": [ "DLC" ], "c": [ "MUL" ], "d": [ "NSD", "DLC", "RCS", "AIP", "DLC", "NSD", "NST", "DLC", "AIP", "NST", "DLC", "NST", "NSD", "NST" ], "ind1": " ", "ind2": " " } ], "050": [ { "a": [ "AA790.A1" ], "b": [ "R35" ], "ind1": "0", "ind2": "0" } ], "210": [ { "a": [ "Ration. living" ], "ind1": "1", "ind2": " " } ], "222": [ { "a": [ "Rational living" ], "ind1": " ", "ind2": "0" } ], "245": [ { "a": [ "Rational living." ], "ind1": "0", "ind2": "0" } ], "260": [ { "a": [ "[New York] :" ], "b": [ "Institute for Rational Living." ], "ind1": " ", "ind2": " " } ], "300": [ { "a": [ "18 v. :" ], "b": [ "ill. ;" ], "c": [ "27 cm." ], "ind1": " ", "ind2": " " } ], "362": [ { "a": [ "Vol. 1 (Feb. 1966)-v.18, no. 1 (spring 1983)." ], "ind1": "0", "ind2": " " } ], "550": [ { "a": [ "Journal of the Institute for Rational Living." ], "ind1": " ", "ind2": " " }, { "a": [ "Issued by: Institute for Rational Living, Feb. 1966-spring 1982; Institute for Rational-Emotive Therapy, fall 1982-spring 1983." ], "ind1": " ", "ind2": " " } ], "580": [ { "a": [ "Continued in 1983 by: Journal of rational emotive therapy." ], "ind1": " ", "ind2": " " } ], "650": [ { "a": [ "Mental health" ], "ind1": " ", "ind2": "0", "v": [ "Periodicals." ] } ], "710": [ { "a": [ "Institute for Rational-Emotive Therapy (New York, N.Y.)" ], "ind1": "2", "ind2": " " }, { "a": [ "Institute for Rational Living." ], "ind1": "2", "ind2": " " } ], "785": [ { "ind1": "1", "ind2": "0", "t": [ "Journal of rational emotive therapy" ], "w": [ "(DLC) 84643014", "(OCoLC)10569413" ], "x": [ "0748-1985" ] } ] }, "meta": {} } { "content": { "001": "testsample3", "005": "20091117104735.0", "008": "820311d19831998nyuqr1p o 0 a0eng d", "010": [ { "a": [ " 83-644252 " ], "ind1": " ", "ind2": " ", "z": [ "sn82-2030 " ] } ], "022": [ { "a": [ "0731-7158" ], "ind1": "0", "ind2": " " } ], "035": [ { "a": [ "ocm08235783" ], "ind1": " ", "ind2": " " } ], "037": [ { "b": [ "Haworth Press, 28 E. 22nd St., New York, N.Y. 10010" ], "ind1": " ", "ind2": " " } ], "040": [ { "a": [ "NSD" ], "c": [ "NSD" ], "d": [ "DLC", "AIP", "NLM", "NST" ], "ind1": " ", "ind2": " " } ], "050": [ { "a": [ "AC455.2.P73" ], "b": [ "P89" ], "ind1": "0", "ind2": " " } ], "210": [ { "a": [ "Psychother. priv. pract." ], "ind1": "0", "ind2": " " } ], "222": [ { "a": [ "Psychotherapy in private practice" ], "ind1": " ", "ind2": "0" } ], "245": [ { "a": [ "Psychotherapy in private practice." ], "ind1": "0", "ind2": "0" } ], "260": [ { "a": [ "[New York, N.Y.] :" ], "b": [ "Haworth Press," ], "c": [ "[c1983-" ], "ind1": " ", "ind2": " " } ], "300": [ { "a": [ "17 v. :" ], "b": [ "ill. ;" ], "c": [ "23 cm." ], "ind1": " ", "ind2": " " } ], "310": [ { "a": [ "Quarterly" ], "ind1": " ", "ind2": " " } ], "362": [ { "a": [ "Vol. 1, no. 1 (spring 1983)-" ], "ind1": "0", "ind2": " " }, { "a": [ "Ceased with: Vol. 17, no. 4 (1998)." ], "ind1": "1", "ind2": " " } ], "500": [ { "a": [ "Title from cover." ], "ind1": " ", "ind2": " " } ], "650": [ { "a": [ "Psychotherapy" ], "ind1": " ", "ind2": "2", "v": [ "periodicals." ] }, { "a": [ "Private Practice" ], "ind1": " ", "ind2": "2", "v": [ "periodicals." ] }, { "a": [ "Psychotherapy" ], "ind1": " ", "ind2": "0", "v": [ "Periodicals." ], "x": [ "Practice" ] } ], "785": [ { "ind1": "0", "ind2": "0", "t": [ "Journal of psychotherapy in independent practice" ], "w": [ "(DLC)sn 98005091", "(OCoLC)40524650" ], "x": [ "1522-9580" ] } ], "936": [ { "a": [ "Summer 1984" ], "ind1": " ", "ind2": " " } ] }, "meta": {} } { "content": { "001": "testsample4", "005": "20091117105437.0", "007": "cr an ---uuuuu", "008": "840713c19859999nyuqr1p 0 a0eng d", "010": [ { "a": [ "sn 84006638 " ], "ind1": " ", "ind2": " " } ], "022": [ { "a": [ "0748-4518" ], "ind1": "0", "ind2": " " } ], "030": [ { "a": [ "JQCRE6" ], "ind1": " ", "ind2": " " } ], "032": [ { "a": [ "755730" ], "b": [ "USPS" ], "ind1": " ", "ind2": " " } ], "035": [ { "a": [ "ocm10945712" ], "ind1": " ", "ind2": " " } ], "037": [ { "b": [ "Plenum Pub. Corp., 233 Spring St., New York, NY 10013" ], "ind1": " ", "ind2": " " } ], "040": [ { "a": [ "NSD" ], "c": [ "NSD" ], "d": [ "FUG", "NSD", "NST", "IUL", "NST", "HUL", "NST", "EYM", "NST", "HUL" ], "ind1": " ", "ind2": " " } ], "090": [ { "a": [ "AV6001" ], "b": [ ".J72" ], "ind1": " ", "ind2": " " } ], "210": [ { "a": [ "J. quant. criminol." ], "ind1": "1", "ind2": " " } ], "222": [ { "a": [ "Journal of quantitative criminology" ], "ind1": " ", "ind2": "0" } ], "245": [ { "a": [ "Journal of quantitative criminology." ], "ind1": "0", "ind2": "0" } ], "260": [ { "a": [ "New York :" ], "b": [ "Plenum," ], "c": [ "c1985-" ], "ind1": " ", "ind2": " " } ], "300": [ { "a": [ "v. ;" ], "c": [ "23 cm." ], "ind1": " ", "ind2": " " } ], "310": [ { "a": [ "Quarterly" ], "ind1": " ", "ind2": " " } ], "362": [ { "a": [ "Vol. 1, no. 1 (Mar. 1985)-" ], "ind1": "0", "ind2": " " } ], "500": [ { "a": [ "Title from cover." ], "ind1": " ", "ind2": " " } ], "506": [ { "a": [ "Electronic access restricted to Villanova University patrons." ], "ind1": " ", "ind2": " " } ], "530": [ { "a": [ "Also available on the World Wide Web." ], "ind1": " ", "ind2": " " } ], "650": [ { "a": [ "Criminal justice, Administration of" ], "ind1": " ", "ind2": "0", "v": [ "Periodicals." ], "x": [ "Research" ] }, { "a": [ "Crime" ], "ind1": " ", "ind2": "0", "v": [ "Periodicals." ], "x": [ "Research" ] } ], "710": [ { "a": [ "LINK (Online service)" ], "ind1": "2", "ind2": " " } ], "856": [ { "ind1": "4", "ind2": "1", "u": [ "http://springerlink.metapress.com/link.asp?id=102586" ], "z": [ "Online version [v. 15 (1999)-present]" ] }, { "ind1": "4", "ind2": "1", "u": [ "http://openurl.villanova.edu:9003/sfx_local?sid=sfx:e_collectionu0026issn=0748-4518u0026genre=journal" ], "z": [ "Off-campus access" ] } ], "936": [ { "a": [ "Vol. 1, no. 4 (Dec. 1985) LIC" ], "ind1": " ", "ind2": " " } ] }, "meta": {} } { "content": { "001": "testsample1", "005": "20091117105557.0", "008": "840328d19831987nyufx1p o 0 a0eng d", "010": [ { "a": [ " 84643014 //r88" ], "ind1": " ", "ind2": " ", "z": [ "sn 84011556 " ] } ], "022": [ { "a": [ "0748-1985" ], "ind1": "0", "ind2": " " } ], "032": [ { "a": [ "002051" ], "b": [ "USPS" ], "ind1": " ", "ind2": " " } ], "035": [ { "a": [ "ocm10569413" ], "ind1": " ", "ind2": " " } ], "037": [ { "b": [ "Human Sciences Press, Inc., 72 5th Ave., New York, N.Y. 10011" ], "ind1": " ", "ind2": " " } ], "040": [ { "a": [ "KSW" ], "c": [ "KSW" ], "d": [ "CLU", "AIP", "NST", "DLC", "NSD", "NST", "DLC", "HUL", "NST", "NSD", "NLM", "NST", "NSD", "NST", "NSD", "DLC", "NST", "NSD", "NST", "CLU", "NST", "OCL", "PVU" ], "ind1": " ", "ind2": " " } ], "049": [ { "a": [ "PVUP[SERIAL]" ], "ind1": " ", "ind2": " " } ], "050": [ { "a": [ "AC489.R3" ], "b": [ "J68" ], "ind1": "0", "ind2": "0" } ], "210": [ { "a": [ "J. ration. emot. ther." ], "ind1": "0", "ind2": " " } ], "222": [ { "a": [ "Journal of rational emotive therapy" ], "ind1": " ", "ind2": "0" } ], "245": [ { "a": [ "Journal of rational emotive therapy :" ], "b": [ "the journal of the Institute for Rational-Emotive Therapy." ], "ind1": "0", "ind2": "0" } ], "246": [ { "a": [ "Journal of rational-emotive therapy" ], "ind1": "1", "ind2": "3" } ], "260": [ { "a": [ "[New York] :" ], "b": [ "The Institute," ], "c": [ "1983-1987." ], "ind1": " ", "ind2": " " } ], "300": [ { "a": [ "5 v. :" ], "b": [ "ill. ;" ], "c": [ "26 cm." ], "ind1": " ", "ind2": " " } ], "310": [ { "a": [ "Two no. a year" ], "ind1": " ", "ind2": " " } ], "362": [ { "a": [ "Vol. 1, no. 1 (fall 1983)-v. 5, no. 4 (winter 1987)." ], "ind1": "0", "ind2": " " } ], "500": [ { "a": [ "Title from cover." ], "ind1": " ", "ind2": " " }, { "a": [ "Vols. for u003cspring 1985-u003e published by Human Sciences Press, Inc." ], "ind1": " ", "ind2": " " } ], "515": [ { "a": [ "Vol. 1 has only one issue." ], "ind1": " ", "ind2": " " } ], "650": [ { "a": [ "Rational-emotive psychotherapy" ], "ind1": " ", "ind2": "0", "v": [ "Periodicals." ] }, { "a": [ "Cognitive therapy" ], "ind1": " ", "ind2": "0", "v": [ "Periodicals." ] }, { "a": [ "Psychotherapy" ], "ind1": " ", "ind2": "2", "v": [ "periodicals." ] } ], "710": [ { "a": [ "Institute for Rational-Emotive Therapy (New York, N.Y.)" ], "ind1": "2", "ind2": " " } ], "780": [ { "ind1": "0", "ind2": "0", "t": [ "Rational living" ], "w": [ "(OCLC)1763461", "(DLC) 72000647" ], "x": [ "0034-0049" ] } ], "785": [ { "ind1": "0", "ind2": "0", "t": [ "Journal of rational-emotive and cognitive-behavior therapy" ], "w": [ "(DLC) 88648219", "(OCoLC)16307814" ], "x": [ "0894-9085" ] } ] }, "meta": {} } { "content": { "001": "testsample5", "005": "20091117092424.0", "007": "hd bda b|c|", "008": "750901c19379999ncuqr1p 0 a0eng d", "010": [ { "a": [ " 40012649 //r86" ], "ind1": " ", "ind2": " " } ], "022": [ { "a": [ "0022-3387" ], "ind1": " ", "ind2": " " } ], "030": [ { "a": [ "JPRPAU" ], "ind1": " ", "ind2": " " } ], "032": [ { "a": [ "281800" ], "b": [ "USPS" ], "ind1": " ", "ind2": " " } ], "035": [ { "a": [ "ocm01588544" ], "ind1": " ", "ind2": " " } ], "040": [ { "a": [ "MUL" ], "c": [ "MUL" ], "d": [ "NSD", "DLC", "NSD", "DLC", "m.c.", "RCS", "AIP", "NSD", "AIP", "OCL", "DLC", "m/c", "NST" ], "ind1": " ", "ind2": " " } ], "050": [ { "a": [ "AF1001" ], "b": [ ".J66" ], "ind1": "0", "ind2": "0" } ], "210": [ { "a": [ "J. parapsychol." ], "ind1": "1", "ind2": " " } ], "222": [ { "a": [ "Journal of parapsychology" ], "ind1": " ", "ind2": "0" } ], "245": [ { "a": [ "The Journal of parapsychology." ], "ind1": "0", "ind2": "4" } ], "260": [ { "a": [ "Durham, N.C. :" ], "b": [ "Duke University Press." ], "ind1": " ", "ind2": " " } ], "300": [ { "a": [ "v. :" ], "b": [ "ill. ;" ], "c": [ "23 cm." ], "ind1": " ", "ind2": " " } ], "362": [ { "a": [ "Vol. 1 (Mar. 1937)-" ], "ind1": "0", "ind2": " " } ], "500": [ { "a": [ "Editors: Mar. 1937-u003cDec. 1938u003e J. B. Rhine, C. E. Stuart (with W. McDougall, Mar. 1937-Sept. 1938)" ], "ind1": " ", "ind2": " " } ], "506": [ { "a": [ "Electronic access restricted to Villanova University patrons." ], "ind1": " ", "ind2": " " } ], "530": [ { "a": [ "Also available on the World Wide Web." ], "ind1": " ", "ind2": " " } ], "550": [ { "a": [ "Issued in cooperation with the Duke University Parapsychology Laboratory, 194 -50." ], "ind1": " ", "ind2": " " } ], "555": [ { "a": [ "Vols. 1-16, 1937-52, in v. 17, no. 3." ], "ind1": " ", "ind2": " " } ], "650": [ { "a": [ "Parapsychology" ], "ind1": " ", "ind2": "0", "v": [ "Periodicals." ], "x": [ "Research" ] } ], "700": [ { "a": [ "McDougall, William," ], "d": [ "1871-1938." ], "ind1": "1", "ind2": " " }, { "a": [ "Stuart, Charles Edward," ], "d": [ "1907-" ], "ind1": "1", "ind2": " " }, { "a": [ "Rhine, J. B." ], "d": [ "1895-1980." ], "ind1": "1", "ind2": " ", "q": [ "(Joseph Banks)," ] } ], "710": [ { "a": [ "Duke University." ], "b": [ "Parapsychology Laboratory." ], "ind1": "2", "ind2": " " }, { "a": [ "ProQuest Psychology Journals." ], "ind1": "2", "ind2": " " } ], "856": [ { "ind1": "4", "ind2": "1", "u": [ "http://proquest.umi.com/pqdweb?pmid=000029287u0026clientId=3260u0026RQT=318u0026VName=PQD" ], "z": [ "Online version [v. 59 (1995)-present]" ] }, { "ind1": "4", "ind2": "1", "u": [ "http://openurl.villanova.edu:9003/sfx_local?sid=sfx:e_collectionu0026issn=0022-3387u0026genre=journal" ], "z": [ "Off-campus access" ] } ], "936": [ { "a": [ "Mar. 1937-Dec. 1958" ], "ind1": " ", "ind2": " " } ] }, "meta": {} } { "content": { "001": "testsample6", "005": "20091117105533.0", "008": "751101d19571970inumr1p o0 a0eng ", "010": [ { "a": [ "a 53008626 //r853" ], "ind1": " ", "ind2": " ", "z": [ "sc 80001624 " ] } ], "022": [ { "a": [ "0095-9057" ], "ind1": " ", "ind2": " " } ], "035": [ { "a": [ "ocm01772601" ], "ind1": " ", "ind2": " " } ], "040": [ { "a": [ "DLC" ], "c": [ "MUL" ], "d": [ "NSD", "DLC", "m/c", "HUL", "NST" ], "ind1": " ", "ind2": " " } ], "041": [ { "a": [ "eng", "fre", "ger", "ita" ], "ind1": "0", "ind2": " " } ], "050": [ { "a": [ "AA1" ], "b": [ ".J975" ], "ind1": "0", "ind2": " " } ], "222": [ { "a": [ "Journal of mathematics and mechanics" ], "ind1": " ", "ind2": "0" } ], "245": [ { "a": [ "Journal of mathematics and mechanics." ], "ind1": "0", "ind2": "0" } ], "260": [ { "a": [ "Bloomington, Ind. :" ], "b": [ "Graduate Institute for Mathematics and Mechanics, Indiana University," ], "c": [ "c1957-c1970." ], "ind1": " ", "ind2": " " } ], "300": [ { "a": [ "14 v. ;" ], "c": [ "26 cm." ], "ind1": " ", "ind2": " " } ], "310": [ { "a": [ "Monthly," ], "b": [ "-June 1970" ], "ind1": " ", "ind2": " " } ], "321": [ { "a": [ "Bimonthly," ], "b": [ "1957-" ], "ind1": " ", "ind2": " " } ], "362": [ { "a": [ "Vol. 6, no. 1 (Jan. 1957)-v. 19, no. 12 (June 1970)." ], "ind1": "0", "ind2": " " } ], "500": [ { "a": [ "Title from cover." ], "ind1": " ", "ind2": " " } ], "546": [ { "a": [ "English, French, German and Italian." ], "ind1": " ", "ind2": " " } ], "550": [ { "a": [ "Vols. for 1957- published by the Graduate Institute for Mathematics and Mechanics, Indiana University; -June 1970 by the Dept. of Mathematics, Indiana University." ], "ind1": " ", "ind2": " " } ], "580": [ { "a": [ "Continued in July 1970 by: Indiana University mathematics journal." ], "ind1": " ", "ind2": " " } ], "650": [ { "a": [ "Mechanics, Analytic" ], "ind1": " ", "ind2": "0", "v": [ "Periodicals." ] }, { "a": [ "Mathematics" ], "ind1": " ", "ind2": "0", "v": [ "Periodicals." ] } ], "710": [ { "a": [ "Indiana University." ], "b": [ "Dept. of Mathematics." ], "ind1": "2", "ind2": " " }, { "a": [ "Indiana University." ], "b": [ "Graduate Institute for Mathematics and Mechanics." ], "ind1": "2", "ind2": " " } ], "780": [ { "ind1": "0", "ind2": "0", "t": [ "Journal of rational mechanics and analysis" ], "w": [ "(DLC)sf 85001244", "(OCoLC)2263071" ] } ], "785": [ { "ind1": "1", "ind2": "0", "t": [ "Indiana University mathematics journal" ], "w": [ "(DLC) 75640369", "(OCoLC)1753019" ], "x": [ "0022-2518" ] } ] }, "meta": {} } { "content": { "001": "testsample8", "005": "20091117102549.0", "007": "cr an ", "008": "741112c19569999enkbrzp 0 a0eng ", "010": [ { "a": [ " 57003141 //r83" ], "ind1": " ", "ind2": " " } ], "022": [ { "a": [ "0022-3999" ], "ind1": "0", "ind2": " " } ], "030": [ { "a": [ "JPCRAT" ], "ind1": " ", "ind2": " " } ], "035": [ { "a": [ "ocm01782774" ], "ind1": " ", "ind2": " " } ], "040": [ { "a": [ "DLC" ], "c": [ "DLC" ], "d": [ "NSD", "OCL", "NSD", "DLC", "SER", "OCL", "RCS", "DLC", "OCL", "AIP", "OCL", "NSD" ], "ind1": " ", "ind2": " " } ], "050": [ { "a": [ "AC52" ], "b": [ ".J6" ], "ind1": "0", "ind2": "0" } ], "210": [ { "a": [ "J. psychosom. res." ], "ind1": "1", "ind2": " " } ], "222": [ { "a": [ "Journal of psychosomatic research" ], "ind1": " ", "ind2": "0" } ], "245": [ { "a": [ "Journal of psychosomatic research." ], "ind1": "0", "ind2": "0" } ], "260": [ { "a": [ "London ;", "New York :" ], "b": [ "Pergamon Press." ], "ind1": " ", "ind2": " " } ], "300": [ { "a": [ "v. :" ], "b": [ "ill. ;" ], "c": [ "26 cm." ], "ind1": " ", "ind2": " " } ], "362": [ { "a": [ "Vol. 1 (Feb. 1956)-" ], "ind1": "0", "ind2": " " } ], "500": [ { "a": [ "Editor: 1956- D. Leigh." ], "ind1": " ", "ind2": " " } ], "506": [ { "a": [ "Electronic access restricted to Villanova University patrons." ], "ind1": " ", "ind2": " " } ], "530": [ { "a": [ "Also available on the World Wide Web." ], "ind1": " ", "ind2": " " } ], "650": [ { "a": [ "Psychosomatic Medicine" ], "ind1": " ", "ind2": "2", "v": [ "periodicals." ] }, { "a": [ "Medicine, Psychosomatic" ], "ind1": " ", "ind2": "0", "v": [ "Periodicals." ], "x": [ "Research" ] } ], "700": [ { "a": [ "Leigh, Denis." ], "ind1": "1", "ind2": " " } ], "710": [ { "a": [ "ScienceDirect (Online service)." ], "ind1": "2", "ind2": " " } ], "856": [ { "ind1": "4", "ind2": "1", "u": [ "http://www.sciencedirect.com/science/journal/00223999" ], "z": [ "Online version [v. 44 (1998)-present]" ] }, { "ind1": "4", "ind2": "1", "u": [ "http://openurl.villanova.edu:9003/sfx_local?sid=sfx:e_collectionu0026issn=0022-3999u0026genre=journal" ], "z": [ "Off-campus access" ] } ] }, "meta": {} } { "content": { "001": "testsample7", "005": "20091117102216.0", "007": "hd bfa b|c|", "008": "741112c19369999maubr1p 0 a0eng ", "010": [ { "a": [ " 38003075 " ], "ind1": " ", "ind2": " " } ], "022": [ { "a": [ "0022-3980" ], "ind1": " ", "ind2": " " } ], "030": [ { "a": [ "JOPSAM" ], "ind1": " ", "ind2": " " } ], "032": [ { "a": [ "282400" ], "b": [ "USPS" ], "ind1": " ", "ind2": " " } ], "035": [ { "a": [ "ocm01782317" ], "ind1": " ", "ind2": " " } ], "037": [ { "b": [ "Journal Press, 2 Commercial St., Provincetown, MA 02657" ], "ind1": " ", "ind2": " " } ], "040": [ { "a": [ "DLC" ], "c": [ "DLC" ], "d": [ "OCL", "DLC", "NSD", "m.c.", "OCL", "RCS", "AIP", "OCL", "NSD" ], "ind1": " ", "ind2": " " } ], "050": [ { "a": [ "AF1" ], "b": [ ".J67" ], "ind1": "0", "ind2": "0" } ], "210": [ { "a": [ "J. psychol." ], "ind1": "1", "ind2": " " } ], "222": [ { "a": [ "The Journal of psychology" ], "ind1": " ", "ind2": "4" } ], "245": [ { "a": [ "The Journal of psychology." ], "ind1": "0", "ind2": "4" } ], "260": [ { "a": [ "Provincetown, Mass. :" ], "b": [ "Journal Press." ], "ind1": " ", "ind2": " " } ], "300": [ { "a": [ "v. :" ], "b": [ "ill. ;" ], "c": [ "25 cm." ], "ind1": " ", "ind2": " " } ], "310": [ { "a": [ "Bimonthly," ], "b": [ "1965-" ], "ind1": " ", "ind2": " " } ], "321": [ { "a": [ "Quarterly," ], "b": [ "1935-64" ], "ind1": " ", "ind2": " " } ], "362": [ { "a": [ "Vol. 1 (1935/36)-" ], "ind1": "0", "ind2": " " } ], "500": [ { "a": [ "Editor: 1935/36-u003cOct. 1937,u003e C. Murchison." ], "ind1": " ", "ind2": " " } ], "506": [ { "a": [ "Electronic access restricted to Villanova University patrons." ], "ind1": " ", "ind2": " " } ], "530": [ { "a": [ "Also available on the World Wide Web." ], "ind1": " ", "ind2": " " } ], "650": [ { "a": [ "Psychology" ], "ind1": " ", "ind2": "0", "v": [ "Periodicals." ] } ], "700": [ { "a": [ "Murchison, Carl Allanmore," ], "d": [ "1887-" ], "ind1": "1", "ind2": " " } ], "710": [ { "a": [ "ProQuest Psychology Journals." ], "ind1": "2", "ind2": " " } ], "856": [ { "ind1": "4", "ind2": "1", "u": [ "http://proquest.umi.com/pqdweb?pmid=000014346u0026clientId=3260u0026RQT=318u0026VName=PQD" ], "z": [ "Online version [v. 128 (1994)-present]" ] }, { "ind1": "4", "ind2": "1", "u": [ "http://openurl.villanova.edu:9003/sfx_local?sid=sfx:e_collectionu0026issn=0022-3980u0026genre=journal" ], "z": [ "Off-campus access" ] } ], "936": [ { "a": [ "Jan. 1975 (surrogate)" ], "ind1": " ", "ind2": " " } ] }, "meta": {} } { "content": { "001": "testsample10", "005": "20091117093002.0", "007": "cr bn ---|||||", "008": "751002c19709999njufr1p 0 a0eng ", "010": [ { "a": [ " 75643076 " ], "ind1": " ", "ind2": " " } ], "022": [ { "a": [ "0047-2662" ], "ind1": "0", "ind2": " " } ], "030": [ { "a": [ "JPHPAE" ], "ind1": " ", "ind2": " " } ], "035": [ { "a": [ "ocm02240975" ], "ind1": " ", "ind2": " " } ], "037": [ { "b": [ "07716" ], "ind1": " ", "ind2": " " } ], "040": [ { "a": [ "DLC" ], "c": [ "DLC" ], "d": [ "NSD", "DLC", "OCL", "RCS", "AIP", "NSD", "OCL", "NST" ], "ind1": " ", "ind2": " " } ], "050": [ { "a": [ "AF204.5" ], "b": [ ".J68" ], "ind1": "0", "ind2": " " } ], "090": [ { "a": [ "AF204.5" ], "b": [ ".J6" ], "ind1": " ", "ind2": " " } ], "210": [ { "a": [ "J. phenomenol. psychol." ], "ind1": "1", "ind2": " " } ], "222": [ { "a": [ "Journal of phenomenological psychology" ], "ind1": " ", "ind2": "0" } ], "245": [ { "a": [ "Journal of phenomenological psychology." ], "ind1": "0", "ind2": "0" } ], "260": [ { "a": [ "[Atlantic Highlands, N.J. :" ], "b": [ "Humanities Press]" ], "ind1": " ", "ind2": " " } ], "300": [ { "a": [ "v. ;" ], "c": [ "23 cm." ], "ind1": " ", "ind2": " " } ], "362": [ { "a": [ "Vol. 1 (fall 1970)-" ], "ind1": "0", "ind2": " " } ], "500": [ { "a": [ "At head of title u003c1974-u003e: JPP." ], "ind1": " ", "ind2": " " } ], "506": [ { "a": [ "Electronic access restricted to Villanova University patrons." ], "ind1": " ", "ind2": " " } ], "530": [ { "a": [ "Also available on the World Wide Web." ], "ind1": " ", "ind2": " " } ], "650": [ { "a": [ "Phenomenological psychology" ], "ind1": " ", "ind2": "0", "v": [ "Periodicals." ] } ], "710": [ { "a": [ "Ingenta (Firm)." ], "ind1": "2", "ind2": " " } ], "856": [ { "ind1": "4", "ind2": "1", "u": [ "http://www.ingentaconnect.com/content/brill/jpp" ], "z": [ "Online version [v. 1 (1970/71)-present]" ] }, { "ind1": "4", "ind2": "1", "u": [ "http://openurl.villanova.edu:9003/sfx_local?sid=sfx:e_collectionu0026issn=0047-2662u0026genre=journal" ], "z": [ "Off-campus access" ] } ] }, "meta": {} } { "content": { "001": "testsample9", "005": "20091117160642.0", "006": "m d ", "007": "cr mnu||||||||", "008": "741112c19659999pauqx pss 0 a0eng d", "010": [ { "a": [ " 2006212058" ], "ind1": " ", "ind2": " " } ], "022": [ { "2": [ "1" ], "a": [ "1559-8519" ], "ind1": "0", "ind2": " ", "y": [ "0022-4499" ] } ], "035": [ { "a": [ "(OCoLC)ocm39109327" ], "ind1": " ", "ind2": " " } ], "037": [ { "b": [ "Society for the Scientific Study of Sexuality, PO Box 416, Allentown, PA 18105-0416" ], "ind1": " ", "ind2": " " } ], "040": [ { "a": [ "FGA" ], "c": [ "FGA" ], "d": [ "OCL", "OCLCQ", "FQM", "NSD", "EYM", "HUL", "PVU" ], "ind1": " ", "ind2": " " } ], "049": [ { "a": [ "PVUM" ], "ind1": " ", "ind2": " " } ], "050": [ { "a": [ "AQ5" ], "b": [ ".J6" ], "ind1": "1", "ind2": "4" } ], "130": [ { "a": [ "Journal of sex research (Online)" ], "ind1": "0", "ind2": " " } ], "210": [ { "a": [ "J. sex res." ], "b": [ "(Online)" ], "ind1": "1", "ind2": " " } ], "222": [ { "a": [ "The journal of sex research" ], "b": [ "(Online)" ], "ind1": " ", "ind2": "4" } ], "245": [ { "a": [ "The journal of sex research" ], "h": [ "[electronic resource]." ], "ind1": "1", "ind2": "4" } ], "260": [ { "a": [ "New York, N.Y. :" ], "b": [ "Society for the Scientific Study of Sex," ], "c": [ "1965-" ], "ind1": " ", "ind2": " " } ], "310": [ { "a": [ "4 issues yearly," ], "b": [ "1967-" ], "ind1": " ", "ind2": " " } ], "321": [ { "a": [ "Three issues yearly," ], "b": [ "1965-1966" ], "ind1": " ", "ind2": " " } ], "362": [ { "a": [ "Vol. 1, no. 1 (Mar. 1965)-" ], "ind1": "0", "ind2": " " } ], "500": [ { "a": [ "Title from cover (JSTOR, viewed Apr. 18, 2007)." ], "ind1": " ", "ind2": " " }, { "a": [ "Place of publication varies." ], "ind1": " ", "ind2": " " }, { "a": [ "Latest issue consulted: Vol. 43, issue 4 (Nov. 2006) (SSSS website, viewed Apr. 18, 2007)." ], "ind1": " ", "ind2": " " } ], "506": [ { "a": [ "Electronic access restricted to Villanova University patrons." ], "ind1": " ", "ind2": " " } ], "538": [ { "a": [ "Mode of access: World Wide Web." ], "ind1": " ", "ind2": " " } ], "550": [ { "a": [ "Issued by: Society for the Scientific Study of Sex, 1965-1994; Society for the Scientific Study of Sexuality, 1995-" ], "ind1": " ", "ind2": " " } ], "650": [ { "a": [ "Sexology" ], "ind1": " ", "ind2": "0", "v": [ "Periodicals." ], "x": [ "Research" ] }, { "a": [ "Sex" ], "ind1": "1", "ind2": "2", "v": [ "Periodicals." ] }, { "a": [ "Psychiatry" ], "ind1": "2", "ind2": "2", "v": [ "Periodicals." ] } ], "710": [ { "a": [ "Society for the Scientific Study of Sex (U.S.)" ], "ind1": "2", "ind2": " " }, { "a": [ "Society for the Scientific Study of Sexuality (U.S.)" ], "ind1": "2", "ind2": " " }, { "a": [ "JSTOR (Organization)" ], "ind1": "2", "ind2": " " } ], "776": [ { "i": [ "Also issued in print:" ], "ind1": "0", "ind2": "8", "t": [ "Journal of sex research" ], "w": [ "(DLC) 68130414", "(OCoLC)1783365" ], "x": [ "0022-4499" ] } ], "780": [ { "ind1": "0", "ind2": "0", "t": [ "Advances in sex research (Online)" ], "w": [ "(DLC) 2007234124", "(OCoLC)123208775" ] } ], "856": [ { "ind1": "4", "ind2": "0", "u": [ "http://www.jstor.org/journals/00224499.html" ], "z": [ "Online version [JSTOR: v. 1 (1965)-present ; latest 5 years unavailable]" ] }, { "ind1": "4", "ind2": "0", "u": [ "http://openurl.villanova.edu:9003/sfx_local?sid=sfx:e_collectionu0026issn=0022-4499u0026genre=journal" ], "z": [ "Off-campus access" ] } ], "994": [ { "a": [ "C0" ], "b": [ "PVU" ], "ind1": " ", "ind2": " " } ] }, "meta": {} } -
miku renamed this gist
Aug 5, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
miku created this gist
Aug 5, 2014 .There are no files selected for viewing