書誌情報を検索するため、国立国会図書館サーチの提供する API を使ってみました。
利用条件
APIのご利用についてに案内があります。個人・団体を問わず、営利目的での利用の場合は利用申請が必要です。営利目的には広告掲載も含みますので個人開発したウェブサービスに Google AsSense を貼る場合などでも利用申請が必要です。非営利目的であっても継続的に利用する場合は利用状況把握のために利用申請が推奨されています。
ちょっとややこしいのは、国立国会図書館 API は複数のデータ提供元(データプロバイダ)が存在し、その提供元によっては自由な利用が可能(クリエイティブコモンズライセンスなど)になっている場合があります。プロバイダIDを指定して利用すれば、営利目的でも利用申請は不要ということですね。
API提供対象データプロバイダ一覧に提供元とライセンスが記載されています。データプロバイダとして国立国会図書館はもちろん、国立の各種研究所や各県立図書館に加えて、青空文庫や日本ペンクラブなども名を連ねています。
API の種類
国立国会図書館 API は以下の5つの API から構成されています。
- 検索用API(SRU)
- 検索用API(OpenSearch)
- 検索用API(OpenURL)
- ハーベスト用API(OAI-PMH)
- 書影API
検索用API はプロトコルが3種類用意されています。プロトコルによって検索パラメータとレスポンスに違いがあります。大雑把に言って SRU の方が検索条件もレスポンスも詳細です。SRU、OpenSearch は XML を返すのに対して、OpenURL は国立国会図書館サーチと同様の HTML を返します。
ハーベスト用 API はデータリポジトリがデータを収集(ハーベスト)するための API で、検索は出来ません。
書影 API は指定した単一書籍の書影画像を取得できます。
この記事ではプログラムからの検索用途を考えていますので、検索用API(SRU)、検索用API(OpenSearch)を取り上げ、関連として書影API についても記述します。
データプロバイダ
利用条件の節でも書きましたが、国立国会図書館サーチは複数のデータプロバイダから構成されます。
データプロバイダによって許諾しているサービスが違いますので、同じ検索条件でも国立国会図書館サーチと検索用API で検索結果が異なる場合があります。
また、データプロバイダによっては国立国会図書館サーチがデータを収集しておらず、検索のたびに横断検索が実行されます。
検索用API(SRU)
アクセス URL は https://ndlsearch.ndl.go.jp/api/sru で、主要なパラメータは以下の通りです。
引数名 | 必須 | 値 | 省略時 |
---|---|---|---|
operation | 〇 | 検索の場合は searchRetrieve | |
query | 〇 | CQL で検索条件を指定 | |
startRecord | 開始位置 | 1 | |
maximumRecords | 最大取得件数 | 200 | |
recordPacking | xml または string | string | |
recordSchema | dc, dcndl のいずれか | dc |
recordPacking を xml にすると、recordData(書誌情報)も XML で返してくれますのでパースが少し楽になります。
recordSchema が dc だと基本的な書誌情報のみですが、dcndl にするとより詳細な書誌情報も得られます。
query で指定する CQL でタイトルや筆者などの検索条件を指定します。検索項目によって完全一致/前方一致/部分一致が可能か、複数指定可能かが変わってきます。例えば ISBN は完全一致のみですので「ISBN が 978 で始まる書誌情報を全て」というような検索は出来ません。
例として、タイトルに"プログラミング"を含む書誌情報を、recordPacking を xml で、recordSchema を dcndl で、最初の10件だけ取得する場合は以下の URL になります。
レスポンスには書誌情報に加えて、データプロバイダ/NDC分類/出版年などのファセット情報も返ってきます。
レスポンス
<?xml version="1.0" encoding="UTF-8"?>
<searchRetrieveResponse xmlns="http://www.loc.gov/zing/srw/">
<version>1.2</version>
<numberOfRecords>30056</numberOfRecords>
<nextRecordPosition>11</nextRecordPosition>
<extraResponseData>
<facets>
<lst name="REPOSITORY_NO">
<int name="R000000004">7033</int>
<int name="R100000001">7015</int>
<int name="R100000002">6605</int>
<int name="R100000096">6284</int>
<int name="R000000024">3793</int>
<int name="R000000025">2064</int>
<int name="R000000016">1584</int>
<int name="R100000074">585</int>
<int name="R100000040">225</int>
<int name="R100000039">220</int>
<int name="R100000004">152</int>
<int name="R100000046">67</int>
<int name="R100000038">43</int>
<int name="R100000067">33</int>
<int name="R000000006">16</int>
<int name="R000000054">7</int>
<int name="R100000073">6</int>
<int name="R100000049">5</int>
<int name="R100000085">3</int>
<int name="R100000098">3</int>
<int name="R000000007">2</int>
<int name="R100000097">2</int>
<int name="R000000005">1</int>
<int name="R100000099">1</int>
</lst>
<lst name="NDC">
<int name="0">9776</int>
<int name="1">63</int>
<int name="2">2</int>
<int name="3">595</int>
<int name="4">1356</int>
<int name="5">2176</int>
<int name="6">296</int>
<int name="7">615</int>
<int name="8">10</int>
<int name="9">20</int>
</lst>
<lst name="ISSUED_DATE">
<int name="1900">1</int>
<int name="1953">3</int>
<int name="1954">11</int>
<int name="1955">27</int>
<int name="1956">19</int>
<int name="1957">36</int>
<int name="1958">32</int>
<int name="1959">56</int>
<int name="1960">70</int>
<int name="1961">54</int>
<int name="1962">62</int>
<int name="1963">72</int>
<int name="1964">89</int>
<int name="1965">89</int>
<int name="1966">94</int>
<int name="1967">57</int>
<int name="1968">89</int>
<int name="1969">151</int>
<int name="1970">136</int>
<int name="1971">163</int>
<int name="1972">132</int>
<int name="1973">134</int>
<int name="1974">97</int>
<int name="1975">118</int>
<int name="1976">121</int>
<int name="1977">138</int>
<int name="1978">98</int>
<int name="1979">113</int>
<int name="1980">132</int>
<int name="1981">279</int>
<int name="1982">250</int>
<int name="1983">322</int>
<int name="1984">360</int>
<int name="1985">379</int>
<int name="1986">393</int>
<int name="1987">405</int>
<int name="1988">405</int>
<int name="1989">489</int>
<int name="1990">465</int>
<int name="1991">470</int>
<int name="1992">425</int>
<int name="1993">480</int>
<int name="1994">550</int>
<int name="1995">577</int>
<int name="1996">502</int>
<int name="1997">627</int>
<int name="1998">701</int>
<int name="1999">800</int>
<int name="2000">795</int>
<int name="2001">745</int>
<int name="2002">919</int>
<int name="2003">815</int>
<int name="2004">811</int>
<int name="2005">787</int>
<int name="2006">764</int>
<int name="2007">808</int>
<int name="2008">758</int>
<int name="2009">850</int>
<int name="2010">803</int>
<int name="2011">809</int>
<int name="2012">842</int>
<int name="2013">716</int>
<int name="2014">692</int>
<int name="2015">615</int>
<int name="2016">593</int>
<int name="2017">877</int>
<int name="2018">1087</int>
<int name="2019">1132</int>
<int name="2020">1097</int>
<int name="2021">842</int>
<int name="2022">264</int>
</lst>
<lst name="LIBRARY">
<int name="国立国会図書館">6606</int>
<int name="大阪市立図書館">3519</int>
<int name="横浜市立図書館">2724</int>
<int name="滋賀県立図書館">2075</int>
<int name="大阪府立中央図書館">2072</int>
<int name="岡山県立図書館">1883</int>
<int name="神奈川県立川崎図書館">1841</int>
<int name="名古屋市図書館">1348</int>
<int name="東京都立中央図書館">1332</int>
<int name="高知県立図書館">1329</int>
<int name="さいたま市立中央図書館">1323</int>
<int name="愛知県図書館">1312</int>
<int name="徳島県立図書館">1165</int>
<int name="長崎県立長崎図書館">1095</int>
<int name="堺市立中央図書館">1087</int>
<int name="東京都立多摩図書館">985</int>
<int name="福井県立図書館">862</int>
<int name="大分県立図書館">821</int>
<int name="静岡市立中央図書館">791</int>
<int name="岐阜県図書館">775</int>
<int name="札幌市中央図書館">768</int>
<int name="鳥取県立図書館">729</int>
<int name="福岡市総合図書館">698</int>
<int name="秋田県立図書館">672</int>
<int name="茨城県立図書館">616</int>
<int name="千葉市中央図書館">610</int>
<int name="和歌山県立図書館">605</int>
<int name="広島市立中央図書館">605</int>
<int name="三重県立図書館">550</int>
<int name="佐賀県立図書館">509</int>
<int name="香川県立図書館">494</int>
<int name="富山県立図書館">469</int>
<int name="奈良県立図書情報館">465</int>
<int name="宮城県図書館">463</int>
<int name="静岡県立中央図書館">462</int>
<int name="新潟県立図書館">434</int>
<int name="千葉県立西部図書館">415</int>
<int name="相模原市立図書館">409</int>
<int name="広島県立図書館">388</int>
<int name="兵庫県立図書館">377</int>
<int name="川崎市立図書館">370</int>
<int name="山形県立図書館">347</int>
<int name="山梨県立図書館">347</int>
<int name="埼玉県立熊谷図書館">323</int>
<int name="山口県立山口図書館">323</int>
<int name="福島県立図書館">318</int>
<int name="鹿児島県立図書館">314</int>
<int name="福岡県立図書館">313</int>
<int name="島根県立図書館">307</int>
<int name="沖縄県立図書館">293</int>
<int name="京都府立図書館">290</int>
<int name="県立長野図書館">290</int>
<int name="宮崎県立図書館">285</int>
<int name="石川県立図書館">283</int>
<int name="群馬県立図書館">274</int>
<int name="青森県立図書館">271</int>
<int name="埼玉県立久喜図書館">254</int>
<int name="千葉県立中央図書館">252</int>
<int name="愛媛県立図書館">230</int>
<int name="北海道立図書館">209</int>
<int name="熊本県立図書館">191</int>
<int name="岩手県立図書館">170</int>
<int name="栃木県立図書館">145</int>
<int name="神奈川県立図書館">128</int>
<int name="千葉県立東部図書館">105</int>
<int name="大阪府立中之島図書館">62</int>
<int name="若狭図書学習センター">50</int>
<int name="サピエ図書館">43</int>
<int name="大阪府立中央図書館国際児童文学館">13</int>
<int name="ブレイルスター点訳友の会">1</int>
<int name="京都府立京都学・歴彩館">1</int>
<int name="埼玉県立熊谷点字図書館">1</int>
</lst>
</facets>
</extraResponseData>
<records>
<record>
<recordSchema>info:srw/schema/1/dc-v1.1</recordSchema>
<recordPacking>xml</recordPacking>
<recordData>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcndl="http://ndl.go.jp/dcndl/terms/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:owl="http://www.w3.org/2002/07/owl#">
<dcndl:BibAdminResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I023576269-00">
<dcndl:catalogingStatus>C7</dcndl:catalogingStatus>
<dcndl:bibRecordCategory>R000000004</dcndl:bibRecordCategory>
<dcndl:bibRecordSubCategory>632</dcndl:bibRecordSubCategory>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R000000004-I023576269-00#material"/>
</dcndl:BibAdminResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I023576269-00#material">
<dcterms:title>"I"見聞録(第39回)函数プログラミングの集い2011 in Tokyo</dcterms:title>
<dc:title>
<rdf:Description>
<rdf:value>"I"見聞録(第39回)函数プログラミングの集い2011 in Tokyo</rdf:value>
<dcndl:transcription>"I"ケンブンロク(ダイ39カイ)カンスウ プログラミング ノ ツドイ 2011 in Tokyo</dcndl:transcription>
</rdf:Description>
</dc:title>
<dcndl:alternative>
<rdf:Description>
<rdf:value>"I" Report : Meeting on Functional Programming 2011 in Tokyo</rdf:value>
</rdf:Description>
</dcndl:alternative>
<dcterms:creator>
<foaf:Agent>
<foaf:name>山本 和彦</foaf:name>
</foaf:Agent>
</dcterms:creator>
<dc:creator>山本 和彦</dc:creator>
<dcndl:publicationPlace rdf:datatype="http://purl.org/dc/terms/ISO3166">JP</dcndl:publicationPlace>
<dcterms:issued rdf:datatype="http://purl.org/dc/terms/W3CDTF">2012-04</dcterms:issued>
<dcterms:subject rdf:resource="http://id.ndl.go.jp/class/ndlc/ZM13"/>
<dcterms:language rdf:datatype="http://purl.org/dc/terms/ISO639-2">jpn</dcterms:language>
<dcterms:audience>一般</dcterms:audience>
<dcndl:materialType rdf:resource="http://ndl.go.jp/ndltype/Article" rdfs:label="記事・論文"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/books/R100000002-I000000011527-00"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issn/04478053"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issnl/04478053"/>
<dcndl:publicationName>情報処理 : 情報処理学会誌 : IPSJ magazine</dcndl:publicationName>
<dcndl:publicationVolume>53</dcndl:publicationVolume>
<dcndl:number>4</dcndl:number>
<dcndl:issue>565</dcndl:issue>
<dcndl:pageRange>438-442</dcndl:pageRange>
</dcndl:BibResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I023576269-00#material">
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R000000004-I023576269-00#item"/>
</dcndl:BibResource>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R000000004-I023576269-00#item">
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/bib/023576269"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLBibID">023576269</dcterms:identifier>
<dcndl:callNumber>Z14-352</dcndl:callNumber>
</dcndl:Item>
</rdf:RDF>
</recordData>
<recordPosition>1</recordPosition>
</record>
<record>
<recordSchema>info:srw/schema/1/dc-v1.1</recordSchema>
<recordPacking>xml</recordPacking>
<recordData>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcndl="http://ndl.go.jp/dcndl/terms/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:owl="http://www.w3.org/2002/07/owl#">
<dcndl:BibAdminResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I027653354-00">
<dcndl:catalogingStatus>C7</dcndl:catalogingStatus>
<dcndl:bibRecordCategory>R000000004</dcndl:bibRecordCategory>
<dcndl:bibRecordSubCategory>632</dcndl:bibRecordSubCategory>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R000000004-I027653354-00#material"/>
</dcndl:BibAdminResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I027653354-00#material">
<dcterms:title>"死活問題"に直結する必須の「"新"ビジネス教養」 「MBA」を学び始める人は、センスがない!? 「プログラミングが分かる側」に入らないと、生き残れない : INTERVIEW 南場智子さん DeNA会長</dcterms:title>
<dc:title>
<rdf:Description>
<rdf:value>"死活問題"に直結する必須の「"新"ビジネス教養」 「MBA」を学び始める人は、センスがない!? 「プログラミングが分かる側」に入らないと、生き残れない : INTERVIEW 南場智子さん DeNA会長</rdf:value>
<dcndl:transcription>"シカツ モンダイ"ニ チョッケツ スル ヒッス ノ 「"シン"ビジネス キョウヨウ 」 「 MBA 」 オ マナビ ハジメル ヒト ワ 、 センス ガ ナイ!? 「 プログラミング ガ ワカル ガワ 」 ニ ハイラナイ ト 、 イキノコレナイ : INTERVIEW ミナミジョウ トモコ サン DeNA カイチョウ</dcndl:transcription>
</rdf:Description>
</dc:title>
<dcndl:seriesTitle>
<rdf:Description>
<rdf:value>特集 文系ビジネスパーソンでもわかる「プログラミング」超入門 ; プログラミングを学ぶべき理由</rdf:value>
<dcndl:transcription>トクシュウ ブンケイ ビジネスパーソン デモ ワカル 「 プログラミング 」 チョウニュウモン ; プログラミング オ マナブ ベキ リユウ</dcndl:transcription>
</rdf:Description>
</dcndl:seriesTitle>
<dcterms:creator>
<foaf:Agent>
<foaf:name>南場 智子</foaf:name>
<dcndl:transcription>ナンバ トモコ</dcndl:transcription>
</foaf:Agent>
</dcterms:creator>
<dc:creator>南場 智子</dc:creator>
<dcndl:publicationPlace rdf:datatype="http://purl.org/dc/terms/ISO3166">JP</dcndl:publicationPlace>
<dcterms:issued rdf:datatype="http://purl.org/dc/terms/W3CDTF">2016-10</dcterms:issued>
<dcterms:subject rdf:resource="http://id.ndl.go.jp/class/ndlc/ZD1"/>
<dcterms:language rdf:datatype="http://purl.org/dc/terms/ISO639-2">jpn</dcterms:language>
<dcterms:audience>一般</dcterms:audience>
<dcndl:materialType rdf:resource="http://ndl.go.jp/ndltype/Article" rdfs:label="記事・論文"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/books/R100000002-I000000411022-00"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issn/13472844"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issnl/13472844"/>
<dcndl:publicationName>日経ビジネスassocié</dcndl:publicationName>
<dcndl:publicationVolume>15</dcndl:publicationVolume>
<dcndl:number>11</dcndl:number>
<dcndl:issue>305</dcndl:issue>
<dcndl:pageRange>98-101</dcndl:pageRange>
</dcndl:BibResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I027653354-00#material">
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R000000004-I027653354-00#item"/>
</dcndl:BibResource>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R000000004-I027653354-00#item">
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/bib/027653354"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLBibID">027653354</dcterms:identifier>
<dcndl:callNumber>Z71-G842</dcndl:callNumber>
</dcndl:Item>
</rdf:RDF>
</recordData>
<recordPosition>2</recordPosition>
</record>
<record>
<recordSchema>info:srw/schema/1/dc-v1.1</recordSchema>
<recordPacking>xml</recordPacking>
<recordData>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcndl="http://ndl.go.jp/dcndl/terms/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:owl="http://www.w3.org/2002/07/owl#">
<dcndl:BibAdminResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I025554275-00">
<dcndl:catalogingStatus>C7</dcndl:catalogingStatus>
<dcndl:bibRecordCategory>R000000004</dcndl:bibRecordCategory>
<dcndl:bibRecordSubCategory>632</dcndl:bibRecordSubCategory>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R000000004-I025554275-00#material"/>
</dcndl:BibAdminResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I025554275-00#material">
<dcterms:title>"耐える"ための代謝リプログラミング : エネルギー制御シグナル調節による癌の生存戦略</dcterms:title>
<dc:title>
<rdf:Description>
<rdf:value>"耐える"ための代謝リプログラミング : エネルギー制御シグナル調節による癌の生存戦略</rdf:value>
<dcndl:transcription>"タエル"タメ ノ タイシャ リプログラミング : エネルギー セイギョ シグナル チョウセツ ニ ヨル ガン ノ セイゾン センリャク</dcndl:transcription>
</rdf:Description>
</dc:title>
<dcndl:alternative>
<rdf:Description>
<rdf:value>Survival strategy of cancer cells against harsh environments by reprogramming energy metabolism</rdf:value>
</rdf:Description>
</dcndl:alternative>
<dcndl:seriesTitle>
<rdf:Description>
<rdf:value>第1土曜特集 癌幹細胞 ; 癌幹細胞制御の分子学的メカニズム</rdf:value>
<dcndl:transcription>ダイ1 ドヨウ トクシュウ ガン カンサイボウ ; ガン カンサイボウ セイギョ ノ ブンシガクテキ メカニズム</dcndl:transcription>
</rdf:Description>
</dcndl:seriesTitle>
<dcterms:creator>
<foaf:Agent>
<foaf:name>平尾 敦</foaf:name>
<dcndl:transcription>ヒラオ アツシ</dcndl:transcription>
</foaf:Agent>
</dcterms:creator>
<dc:creator>平尾 敦</dc:creator>
<dcndl:publicationPlace rdf:datatype="http://purl.org/dc/terms/ISO3166">JP</dcndl:publicationPlace>
<dcterms:issued rdf:datatype="http://purl.org/dc/terms/W3CDTF">2014-07-05</dcterms:issued>
<dcterms:subject>
<rdf:Description>
<rdf:value>エネルギー代謝制御シグナル</rdf:value>
<dcndl:transcription>エネルギー タイシャ セイギョ シグナル</dcndl:transcription>
</rdf:Description>
</dcterms:subject>
<dcterms:subject>
<rdf:Description>
<rdf:value>HIF1</rdf:value>
<dcndl:transcription>HIF1</dcndl:transcription>
</rdf:Description>
</dcterms:subject>
<dcterms:subject>
<rdf:Description>
<rdf:value>FOXO</rdf:value>
<dcndl:transcription>FOXO</dcndl:transcription>
</rdf:Description>
</dcterms:subject>
<dcterms:subject>
<rdf:Description>
<rdf:value>mTOR</rdf:value>
<dcndl:transcription>mTOR</dcndl:transcription>
</rdf:Description>
</dcterms:subject>
<dcterms:subject>
<rdf:Description>
<rdf:value>AMPK</rdf:value>
<dcndl:transcription>AMPK</dcndl:transcription>
</rdf:Description>
</dcterms:subject>
<dcterms:subject>
<rdf:Description>
<rdf:value>解糖系</rdf:value>
<dcndl:transcription>カイトウケイ</dcndl:transcription>
</rdf:Description>
</dcterms:subject>
<dcterms:subject>
<rdf:Description>
<rdf:value>酸化的リン酸化</rdf:value>
<dcndl:transcription>サンカテキ リンサンカ</dcndl:transcription>
</rdf:Description>
</dcterms:subject>
<dcterms:subject>
<rdf:Description>
<rdf:value>ATP</rdf:value>
<dcndl:transcription>ATP</dcndl:transcription>
</rdf:Description>
</dcterms:subject>
<dcterms:subject rdf:resource="http://id.ndl.go.jp/class/ndlc/ZS7"/>
<dcterms:language rdf:datatype="http://purl.org/dc/terms/ISO639-2">jpn</dcterms:language>
<dcterms:audience>一般</dcterms:audience>
<dcndl:materialType rdf:resource="http://ndl.go.jp/ndltype/Article" rdfs:label="記事・論文"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/books/R100000002-I000000001370-00"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issn/00392359"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issnl/00392359"/>
<dcndl:publicationName>医学のあゆみ</dcndl:publicationName>
<dcndl:publicationVolume>250</dcndl:publicationVolume>
<dcndl:number>1</dcndl:number>
<dcndl:issue>3009</dcndl:issue>
<dcndl:pageRange>59-63</dcndl:pageRange>
</dcndl:BibResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I025554275-00#material">
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R000000004-I025554275-00#item"/>
</dcndl:BibResource>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R000000004-I025554275-00#item">
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/bib/025554275"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLBibID">025554275</dcterms:identifier>
<dcndl:callNumber>Z19-96</dcndl:callNumber>
</dcndl:Item>
</rdf:RDF>
</recordData>
<recordPosition>3</recordPosition>
</record>
<record>
<recordSchema>info:srw/schema/1/dc-v1.1</recordSchema>
<recordPacking>xml</recordPacking>
<recordData>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcndl="http://ndl.go.jp/dcndl/terms/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:owl="http://www.w3.org/2002/07/owl#">
<dcndl:BibAdminResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I027653316-00">
<dcndl:catalogingStatus>C7</dcndl:catalogingStatus>
<dcndl:bibRecordCategory>R000000004</dcndl:bibRecordCategory>
<dcndl:bibRecordSubCategory>632</dcndl:bibRecordSubCategory>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R000000004-I027653316-00#material"/>
</dcndl:BibAdminResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I027653316-00#material">
<dcterms:title>"プログラミングスクールのハーバード大"「HACK REACTOR」に潜入 卒業生が平均年収1000万円を実現できる理由</dcterms:title>
<dc:title>
<rdf:Description>
<rdf:value>"プログラミングスクールのハーバード大"「HACK REACTOR」に潜入 卒業生が平均年収1000万円を実現できる理由</rdf:value>
<dcndl:transcription>"プログラミングスクール ノ ハーバード ダイ"「 HACK REACTOR 」 ニ センニュウ ソツギョウセイ ガ ヘイキン ネンシュウ 1000マンエン オ ジツゲン デキル リユウ</dcndl:transcription>
</rdf:Description>
</dc:title>
<dcndl:seriesTitle>
<rdf:Description>
<rdf:value>特集 文系ビジネスパーソンでもわかる「プログラミング」超入門</rdf:value>
<dcndl:transcription>トクシュウ ブンケイ ビジネスパーソン デモ ワカル 「 プログラミング 」 チョウニュウモン</dcndl:transcription>
</rdf:Description>
</dcndl:seriesTitle>
<dcterms:creator>
<foaf:Agent>
<foaf:name>飯塚 真紀子</foaf:name>
</foaf:Agent>
</dcterms:creator>
<dc:creator>飯塚 真紀子</dc:creator>
<dcndl:publicationPlace rdf:datatype="http://purl.org/dc/terms/ISO3166">JP</dcndl:publicationPlace>
<dcterms:issued rdf:datatype="http://purl.org/dc/terms/W3CDTF">2016-10</dcterms:issued>
<dcterms:subject rdf:resource="http://id.ndl.go.jp/class/ndlc/ZD1"/>
<dcterms:language rdf:datatype="http://purl.org/dc/terms/ISO639-2">jpn</dcterms:language>
<dcterms:audience>一般</dcterms:audience>
<dcndl:materialType rdf:resource="http://ndl.go.jp/ndltype/Article" rdfs:label="記事・論文"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/books/R100000002-I000000411022-00"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issn/13472844"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issnl/13472844"/>
<dcndl:publicationName>日経ビジネスassocié</dcndl:publicationName>
<dcndl:publicationVolume>15</dcndl:publicationVolume>
<dcndl:number>11</dcndl:number>
<dcndl:issue>305</dcndl:issue>
<dcndl:pageRange>88-91</dcndl:pageRange>
</dcndl:BibResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I027653316-00#material">
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R000000004-I027653316-00#item"/>
</dcndl:BibResource>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R000000004-I027653316-00#item">
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/bib/027653316"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLBibID">027653316</dcterms:identifier>
<dcndl:callNumber>Z71-G842</dcndl:callNumber>
</dcndl:Item>
</rdf:RDF>
</recordData>
<recordPosition>4</recordPosition>
</record>
<record>
<recordSchema>info:srw/schema/1/dc-v1.1</recordSchema>
<recordPacking>xml</recordPacking>
<recordData>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcndl="http://ndl.go.jp/dcndl/terms/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:owl="http://www.w3.org/2002/07/owl#">
<dcndl:BibAdminResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I031799214-00">
<dcndl:catalogingStatus>C7</dcndl:catalogingStatus>
<dcndl:bibRecordCategory>R000000004</dcndl:bibRecordCategory>
<dcndl:bibRecordSubCategory>632</dcndl:bibRecordSubCategory>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R000000004-I031799214-00#material"/>
</dcndl:BibAdminResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I031799214-00#material">
<dcterms:title>"プログラミング的"を意識した小学校でのプログラミング体験授業の実践</dcterms:title>
<dc:title>
<rdf:Description>
<rdf:value>"プログラミング的"を意識した小学校でのプログラミング体験授業の実践</rdf:value>
<dcndl:transcription>"プログラミングテキ"オ イシキ シタ ショウガッコウ デ ノ プログラミング タイケン ジュギョウ ノ ジッセン</dcndl:transcription>
</rdf:Description>
</dc:title>
<dcterms:creator>
<foaf:Agent>
<foaf:name>上 泰</foaf:name>
<dcndl:transcription>カミ ヤスシ</dcndl:transcription>
</foaf:Agent>
</dcterms:creator>
<dcterms:creator>
<foaf:Agent>
<foaf:name>岩野 優樹</foaf:name>
<dcndl:transcription>イワノ ユウキ</dcndl:transcription>
</foaf:Agent>
</dcterms:creator>
<dcterms:creator>
<foaf:Agent>
<foaf:name>梶村 好宏</foaf:name>
<dcndl:transcription>カジムラ ヨシヒロ</dcndl:transcription>
</foaf:Agent>
</dcterms:creator>
<dc:creator>上 泰</dc:creator>
<dc:creator>岩野 優樹</dc:creator>
<dc:creator>梶村 好宏</dc:creator>
<dcndl:publicationPlace rdf:datatype="http://purl.org/dc/terms/ISO3166">JP</dcndl:publicationPlace>
<dcterms:issued rdf:datatype="http://purl.org/dc/terms/W3CDTF">2021</dcterms:issued>
<dcterms:subject>
<rdf:Description>
<rdf:value>programming education</rdf:value>
</rdf:Description>
</dcterms:subject>
<dcterms:subject>
<rdf:Description>
<rdf:value>elementary school students</rdf:value>
</rdf:Description>
</dcterms:subject>
<dcterms:subject>
<rdf:Description>
<rdf:value>computational thinking</rdf:value>
</rdf:Description>
</dcterms:subject>
<dcterms:subject>
<rdf:Description>
<rdf:value>micro:bit</rdf:value>
</rdf:Description>
</dcterms:subject>
<dcterms:subject rdf:resource="http://id.ndl.go.jp/class/ndlc/ZM11"/>
<dcterms:language rdf:datatype="http://purl.org/dc/terms/ISO639-2">jpn</dcterms:language>
<dcterms:audience>一般</dcterms:audience>
<dcndl:materialType rdf:resource="http://ndl.go.jp/ndltype/Article" rdfs:label="記事・論文"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/books/R100000002-I000000066350-00"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issn/09161600"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issnl/09161600"/>
<dcndl:publicationName>システム・制御・情報 = Systems, control and information : システム制御情報学会誌</dcndl:publicationName>
<dcndl:publicationVolume>65</dcndl:publicationVolume>
<dcndl:number>11</dcndl:number>
<dcndl:pageRange>433-438</dcndl:pageRange>
</dcndl:BibResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I031799214-00#material">
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R000000004-I031799214-00#item"/>
</dcndl:BibResource>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R000000004-I031799214-00#item">
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/bib/031799214"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLBibID">031799214</dcterms:identifier>
<dcndl:callNumber>Z14-195</dcndl:callNumber>
<dcndl:localCallNumber>棚1a No.112</dcndl:localCallNumber>
</dcndl:Item>
</rdf:RDF>
</recordData>
<recordPosition>5</recordPosition>
</record>
<record>
<recordSchema>info:srw/schema/1/dc-v1.1</recordSchema>
<recordPacking>xml</recordPacking>
<recordData>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcndl="http://ndl.go.jp/dcndl/terms/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:owl="http://www.w3.org/2002/07/owl#">
<dcndl:BibAdminResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I031618513-00">
<dcndl:catalogingStatus>C7</dcndl:catalogingStatus>
<dcndl:bibRecordCategory>R000000004</dcndl:bibRecordCategory>
<dcndl:bibRecordSubCategory>632</dcndl:bibRecordSubCategory>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R000000004-I031618513-00#material"/>
</dcndl:BibAdminResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I031618513-00#material">
<dcterms:title>(1)離散化,(2)計算の簡略化で高速演算,(3)メモリ節約アルゴリズムの適用 マイコンと音声信号で体験! フーリエ変換プログラムの実装</dcterms:title>
<dc:title>
<rdf:Description>
<rdf:value>(1)離散化,(2)計算の簡略化で高速演算,(3)メモリ節約アルゴリズムの適用 マイコンと音声信号で体験! フーリエ変換プログラムの実装</rdf:value>
<dcndl:transcription>(1)リサンカ,(2)ケイサン ノ カンリャクカ デ コウソク エンザン,(3)メモリ セツヤク アルゴリズム ノ テキヨウ マイコン ト オンセイ シンゴウ デ タイケン! フーリエ ヘンカン プログラム ノ ジッソウ</dcndl:transcription>
</rdf:Description>
</dc:title>
<dcndl:seriesTitle>
<rdf:Description>
<rdf:value>特集 数学とプログラミング ; 数学を使ったプログラミング実例集</rdf:value>
<dcndl:transcription>トクシュウ スウガク ト プログラミング ; スウガク オ ツカッタ プログラミング ジツレイシュウ</dcndl:transcription>
</rdf:Description>
</dcndl:seriesTitle>
<dcterms:creator>
<foaf:Agent>
<foaf:name>星野 秋人</foaf:name>
<dcndl:transcription>ホシノ アキヒト</dcndl:transcription>
</foaf:Agent>
</dcterms:creator>
<dc:creator>星野 秋人</dc:creator>
<dcndl:publicationPlace rdf:datatype="http://purl.org/dc/terms/ISO3166">JP</dcndl:publicationPlace>
<dcterms:issued rdf:datatype="http://purl.org/dc/terms/W3CDTF">2021-09</dcterms:issued>
<dcterms:subject rdf:resource="http://id.ndl.go.jp/class/ndlc/ZM13"/>
<dcterms:language rdf:datatype="http://purl.org/dc/terms/ISO639-2">jpn</dcterms:language>
<dcterms:audience>一般</dcterms:audience>
<dcndl:materialType rdf:resource="http://ndl.go.jp/ndltype/Article" rdfs:label="記事・論文"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/books/R100000002-I000000032482-00"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issn/03879569"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issnl/03879569"/>
<dcndl:publicationName>インターフェース = Interface</dcndl:publicationName>
<dcndl:publicationVolume>47</dcndl:publicationVolume>
<dcndl:number>9</dcndl:number>
<dcndl:issue>531</dcndl:issue>
<dcndl:pageRange>49-57</dcndl:pageRange>
</dcndl:BibResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I031618513-00#material">
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R000000004-I031618513-00#item"/>
</dcndl:BibResource>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R000000004-I031618513-00#item">
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/bib/031618513"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLBibID">031618513</dcterms:identifier>
<dcndl:callNumber>Z14-762</dcndl:callNumber>
<dcndl:localCallNumber>棚1a No.119</dcndl:localCallNumber>
</dcndl:Item>
</rdf:RDF>
</recordData>
<recordPosition>6</recordPosition>
</record>
<record>
<recordSchema>info:srw/schema/1/dc-v1.1</recordSchema>
<recordPacking>xml</recordPacking>
<recordData>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcndl="http://ndl.go.jp/dcndl/terms/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:owl="http://www.w3.org/2002/07/owl#">
<dcndl:BibAdminResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I030700721-00">
<dcndl:catalogingStatus>C7</dcndl:catalogingStatus>
<dcndl:bibRecordCategory>R000000004</dcndl:bibRecordCategory>
<dcndl:bibRecordSubCategory>632</dcndl:bibRecordSubCategory>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R000000004-I030700721-00#material"/>
</dcndl:BibAdminResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I030700721-00#material">
<dcterms:title>(公財)学習情報研究センター主催 情報教育セミナー2020 講演要項 AI時代の教育の実現 : プログラミング教育の在り方</dcterms:title>
<dc:title>
<rdf:Description>
<rdf:value>(公財)学習情報研究センター主催 情報教育セミナー2020 講演要項 AI時代の教育の実現 : プログラミング教育の在り方</rdf:value>
<dcndl:transcription>(コウザイ)ガクシュウ ジョウホウ ケンキュウ センター シュサイ ジョウホウ キョウイク セミナー 2020 コウエン ヨウコウ AI ジダイ ノ キョウイク ノ ジツゲン : プログラミング キョウイク ノ アリカタ</dcndl:transcription>
</rdf:Description>
</dc:title>
<dcndl:seriesTitle>
<rdf:Description>
<rdf:value>「情報教育セミナー2020」開催(速報)</rdf:value>
<dcndl:transcription>「 ジョウホウ キョウイク セミナー 2020 」 カイサイ(ソクホウ)</dcndl:transcription>
</rdf:Description>
</dcndl:seriesTitle>
<dcterms:creator>
<foaf:Agent>
<foaf:name>清水 静海</foaf:name>
</foaf:Agent>
</dcterms:creator>
<dc:creator>清水 静海</dc:creator>
<dcndl:publicationPlace rdf:datatype="http://purl.org/dc/terms/ISO3166">JP</dcndl:publicationPlace>
<dcterms:issued rdf:datatype="http://purl.org/dc/terms/W3CDTF">2020-11</dcterms:issued>
<dcterms:subject rdf:resource="http://id.ndl.go.jp/class/ndlc/ZF1"/>
<dcterms:language rdf:datatype="http://purl.org/dc/terms/ISO639-2">jpn</dcterms:language>
<dcterms:audience>一般</dcterms:audience>
<dcndl:materialType rdf:resource="http://ndl.go.jp/ndltype/Article" rdfs:label="記事・論文"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/books/R100000002-I000007426113-00"/>
<dcndl:publicationName>学習情報研究 = Learning resources and information</dcndl:publicationName>
<dcndl:number>277</dcndl:number>
<dcndl:pageRange>2-9</dcndl:pageRange>
</dcndl:BibResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R000000004-I030700721-00#material">
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R000000004-I030700721-00#item"/>
</dcndl:BibResource>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R000000004-I030700721-00#item">
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/bib/030700721"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLBibID">030700721</dcterms:identifier>
<dcndl:callNumber>Z71-M86</dcndl:callNumber>
</dcndl:Item>
</rdf:RDF>
</recordData>
<recordPosition>7</recordPosition>
</record>
<record>
<recordSchema>info:srw/schema/1/dc-v1.1</recordSchema>
<recordPacking>xml</recordPacking>
<recordData>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcndl="http://ndl.go.jp/dcndl/terms/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:owl="http://www.w3.org/2002/07/owl#">
<dcndl:BibAdminResource rdf:about="http://iss.ndl.go.jp/books/R100000096-I012011217-00">
<dcndl:bibRecordCategory>R100000096</dcndl:bibRecordCategory>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R100000096-I012011217-00#material"/>
</dcndl:BibAdminResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R100000096-I012011217-00#material">
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NIIBibID">BB2842465X</dcterms:identifier>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/ISBN">9784877834661</dcterms:identifier>
<rdfs:seeAlso rdf:resource="http://iss.ndl.go.jp/isbn/9784877834661"/>
<rdfs:seeAlso rdf:resource="http://ci.nii.ac.jp/ncid/BB2842465X"/>
<dcterms:title>.NET CoreによるRaspberry Piプログラミング</dcterms:title>
<dc:title>
<rdf:Description>
<rdf:value>.NET CoreによるRaspberry Piプログラミング</rdf:value>
<dcndl:transcription>. NET Core ニ ヨル Raspberry Pi プログラミング</dcndl:transcription>
</rdf:Description>
</dc:title>
<dcterms:creator>
<foaf:Agent>
<foaf:name>川口, 直也</foaf:name>
<dcndl:transcription>カワグチ, ナオヤ</dcndl:transcription>
</foaf:Agent>
</dcterms:creator>
<dc:creator>川口直也著</dc:creator>
<dcterms:publisher>
<foaf:Agent>
<foaf:name>カットシステム</foaf:name>
</foaf:Agent>
</dcterms:publisher>
<dcterms:date>2019.5</dcterms:date>
<dcterms:issued rdf:datatype="http://purl.org/dc/terms/W3CDTF">2019</dcterms:issued>
<dcterms:subject>
<rdf:Description>
<rdf:value>プログラミング(コンピュータ)</rdf:value>
</rdf:Description>
</dcterms:subject>
<dcterms:subject rdf:resource="http://id.ndl.go.jp/class/ndc9/007.64"/>
<dcterms:subject rdf:resource="http://id.ndl.go.jp/class/ndc10/007.64"/>
<dc:subject rdf:datatype="http://ndl.go.jp/dcndl/terms/NDC8">007.64</dc:subject>
<dcterms:language rdf:datatype="http://purl.org/dc/terms/ISO639-2">jpn</dcterms:language>
<dcterms:extent>xii, 231p</dcterms:extent>
<dcterms:extent>24cm</dcterms:extent>
<dcterms:audience>一般</dcterms:audience>
<dcndl:materialType rdf:resource="http://ndl.go.jp/ndltype/Book" rdfs:label="図書"/>
<dcndl:materialType rdf:resource="http://ndl.go.jp/ndltype/Book" rdfs:label="図書"/>
<dcndl:materialType rdf:resource="http://ndl.go.jp/ndltype/Book" rdfs:label="図書"/>
</dcndl:BibResource>
</rdf:RDF>
</recordData>
<recordPosition>8</recordPosition>
</record>
<record>
<recordSchema>info:srw/schema/1/dc-v1.1</recordSchema>
<recordPacking>xml</recordPacking>
<recordData>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcndl="http://ndl.go.jp/dcndl/terms/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:owl="http://www.w3.org/2002/07/owl#">
<dcndl:BibAdminResource rdf:about="http://iss.ndl.go.jp/books/R100000002-I000011052587-00">
<dcndl:catalogingStatus>C7</dcndl:catalogingStatus>
<dcndl:catalogingRule>ncr/1987</dcndl:catalogingRule>
<dcndl:bibRecordCategory>R100000002</dcndl:bibRecordCategory>
<dcndl:bibRecordSubCategory>112</dcndl:bibRecordSubCategory>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R100000002-I000011052587-00#material"/>
</dcndl:BibAdminResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R100000002-I000011052587-00#material">
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/JPNO">21861209</dcterms:identifier>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NSMARCNO">120059600</dcterms:identifier>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/ISBN">978-4-8222-9441-0</dcterms:identifier>
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/jpno/21861209"/>
<rdfs:seeAlso rdf:resource="http://iss.ndl.go.jp/isbn/9784822294410"/>
<dcterms:title>.NET開発テクノロジー入門 : Visual Studio 2010対応版</dcterms:title>
<dc:title>
<rdf:Description>
<rdf:value>.NET開発テクノロジー入門 : Visual Studio 2010対応版</rdf:value>
<dcndl:transcription>. NET カイハツ テクノロジー ニュウモン : Visual Studio 2010 タイオウバン</dcndl:transcription>
</rdf:Description>
</dc:title>
<dcndl:seriesTitle>
<rdf:Description>
<rdf:value>MSDNプログラミングシリーズ</rdf:value>
<dcndl:transcription>MSDN プログラミング シリーズ</dcndl:transcription>
</rdf:Description>
</dcndl:seriesTitle>
<dcterms:creator>
<foaf:Agent rdf:about="http://id.ndl.go.jp/auth/entity/01217452">
<foaf:name>新村, 剛史</foaf:name>
<dcndl:transcription>ニイムラ, ツヨシ</dcndl:transcription>
</foaf:Agent>
</dcterms:creator>
<dcterms:creator>
<foaf:Agent rdf:about="http://id.ndl.go.jp/auth/entity/00290407">
<foaf:name>マイクロソフト株式会社</foaf:name>
</foaf:Agent>
</dcterms:creator>
<dc:creator>マイクロソフト株式会社エバンジェリストチーム 著</dc:creator>
<dc:creator>新村剛史 監修</dc:creator>
<dcterms:publisher>
<foaf:Agent>
<foaf:name>日経BP社</foaf:name>
<dcndl:transcription>ニッケイビーピーシャ</dcndl:transcription>
<dcndl:location>東京</dcndl:location>
</foaf:Agent>
</dcterms:publisher>
<dcterms:publisher>
<foaf:Agent>
<foaf:name>日経BPマーケティング</foaf:name>
<dcndl:transcription>ニッケイビーピーマーケティング</dcndl:transcription>
<dcterms:description>発売</dcterms:description>
<dcndl:location>東京</dcndl:location>
</foaf:Agent>
</dcterms:publisher>
<dcndl:publicationPlace rdf:datatype="http://purl.org/dc/terms/ISO3166">JP</dcndl:publicationPlace>
<dcterms:date>2010.12</dcterms:date>
<dcterms:issued rdf:datatype="http://purl.org/dc/terms/W3CDTF">2010</dcterms:issued>
<dcterms:description>索引あり</dcterms:description>
<dcterms:subject>
<rdf:Description rdf:about="http://id.ndl.go.jp/auth/ndlsh/00569223">
<rdf:value>プログラミング (コンピュータ)</rdf:value>
</rdf:Description>
</dcterms:subject>
<dcterms:subject rdf:resource="http://id.ndl.go.jp/class/ndlc/M159"/>
<dcterms:subject rdf:resource="http://id.ndl.go.jp/class/ndc9/007.64"/>
<dcterms:language rdf:datatype="http://purl.org/dc/terms/ISO639-2">jpn</dcterms:language>
<dcterms:extent>436p ; 24cm</dcterms:extent>
<dcndl:price>3800円</dcndl:price>
<dcterms:audience>一般</dcterms:audience>
<dcndl:materialType rdf:resource="http://ndl.go.jp/ndltype/Book" rdfs:label="図書"/>
<dcterms:accessRights>S01P99U99</dcterms:accessRights>
</dcndl:BibResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R100000002-I000011052587-00#material">
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R100000002-I000011052587-00#item"/>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R100000001-I036320902-00#item"/>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R100000001-I051365687-00#item"/>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R100000001-I052331409-00#item"/>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R100000001-I077507263-00#item"/>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R100000001-I079513441-00#item"/>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R100000001-I084771893-00#item"/>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R100000001-I089677705-00#item"/>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R100000001-I093149565-00#item"/>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R100000001-I097948062-00#item"/>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R100000001-I108785037-00#item"/>
</dcndl:BibResource>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R100000002-I000011052587-00#item">
<dcndl:holdingAgent>
<foaf:Agent>
<foaf:name>国立国会図書館</foaf:name>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLLibCode">0000</dcterms:identifier>
</foaf:Agent>
</dcndl:holdingAgent>
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/bib/000011052587"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLBibID">000011052587</dcterms:identifier>
<dcndl:callNumber>M159-J1143</dcndl:callNumber>
<dcndl:localCallNumber>XB-N11-251</dcndl:localCallNumber>
</dcndl:Item>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R100000001-I036320902-00#item">
<dcndl:holdingAgent>
<foaf:Agent>
<foaf:name>岩手県立図書館</foaf:name>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLLibCode">0311</dcterms:identifier>
</foaf:Agent>
</dcndl:holdingAgent>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuBibID">1627474</dcterms:identifier>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuSubID">1106164047</dcterms:identifier>
<dcndl:callNumber>007.64/ドツ/</dcndl:callNumber>
<dcndl:availability>持出可能</dcndl:availability>
<dcterms:description>配置場所 : 自動化書庫</dcterms:description>
</dcndl:Item>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R100000001-I051365687-00#item">
<dcndl:holdingAgent>
<foaf:Agent>
<foaf:name>福井県立図書館</foaf:name>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLLibCode">1811</dcterms:identifier>
</foaf:Agent>
</dcndl:holdingAgent>
<rdfs:seeAlso rdf:resource="https://www.library-archives.pref.fukui.lg.jp/wo/opc_srh/srh_detail/1104970590/"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuBibID">1104970590</dcterms:identifier>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuSubID">1016016964</dcterms:identifier>
<dcndl:callNumber>007.6/トツト/プログラミング</dcndl:callNumber>
<dcndl:availability>貸出用</dcndl:availability>
<dcterms:description>配置場所 : 集密書庫0類</dcterms:description>
</dcndl:Item>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R100000001-I052331409-00#item">
<dcndl:holdingAgent>
<foaf:Agent>
<foaf:name>大阪市立図書館</foaf:name>
<dcndl:transcription>オオサカシリツトショカン</dcndl:transcription>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLLibCode">2721</dcterms:identifier>
</foaf:Agent>
</dcndl:holdingAgent>
<rdfs:seeAlso rdf:resource="https://web.oml.city.osaka.lg.jp/webopac_i_ja/0012197158"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuBibID">0012197158</dcterms:identifier>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuSubID">0012197158</dcterms:identifier>
</dcndl:Item>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R100000001-I077507263-00#item">
<dcndl:holdingAgent>
<foaf:Agent>
<foaf:name>東京都立中央図書館</foaf:name>
<dcndl:transcription>とうきょうとりつちゅうおうとしょかん</dcndl:transcription>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLLibCode">1311</dcterms:identifier>
</foaf:Agent>
</dcndl:holdingAgent>
<rdfs:seeAlso rdf:resource="https://catalog.library.metro.tokyo.lg.jp/winj/opac/switch-detail-iccap.do?bibid=1108240616"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuBibID">1108240616</dcterms:identifier>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuSubID">5019797726</dcterms:identifier>
<dcndl:callNumber>007.6-7659-2010</dcndl:callNumber>
<dcndl:availability>閲可/個否/協可</dcndl:availability>
<dcterms:description>所蔵場所 : B2書庫B</dcterms:description>
</dcndl:Item>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R100000001-I079513441-00#item">
<dcndl:holdingAgent>
<foaf:Agent>
<foaf:name>岡山県立図書館</foaf:name>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLLibCode">3311</dcterms:identifier>
</foaf:Agent>
</dcndl:holdingAgent>
<rdfs:seeAlso rdf:resource="https://opac.libnet.pref.okayama.jp/licsxp-opac/WOpacMsgNewListToTifTilDetailAction.do?tilcod=1009811364788"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuBibID">1009811364788</dcterms:identifier>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuSubID">0010147999</dcterms:identifier>
<dcndl:callNumber>007.64/マイ11/</dcndl:callNumber>
<dcndl:availability>貸出可</dcndl:availability>
<dcterms:description>配架場所 : 書庫</dcterms:description>
<dcterms:description>資料種別 : 図書一般</dcterms:description>
</dcndl:Item>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R100000001-I084771893-00#item">
<dcndl:holdingAgent>
<foaf:Agent>
<foaf:name>堺市立中央図書館</foaf:name>
<dcndl:transcription>サカイシリツチュウオウトショカン</dcndl:transcription>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLLibCode">2722</dcterms:identifier>
</foaf:Agent>
</dcndl:holdingAgent>
<rdfs:seeAlso rdf:resource="https://www.lib-sakai.jp/licsxp-opac/WOpacMsgNewListToTifTilDetailAction.do?tilcod=1007000036779"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuBibID">1007000036779</dcterms:identifier>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuSubID">801924549</dcterms:identifier>
<dcndl:callNumber>007.64/ト/8</dcndl:callNumber>
</dcndl:Item>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R100000001-I089677705-00#item">
<dcndl:holdingAgent>
<foaf:Agent>
<foaf:name>奈良県立図書情報館</foaf:name>
<dcndl:transcription>ナラケンリツトショジョウホウカン</dcndl:transcription>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLLibCode">2911</dcterms:identifier>
</foaf:Agent>
</dcndl:holdingAgent>
<rdfs:seeAlso rdf:resource="http://opacsvr01.library.pref.nara.jp/mylimedio/search/book.do?bibid=450837"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuBibID">111197939</dcterms:identifier>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuSubID">111197939</dcterms:identifier>
<dcndl:callNumber>007.64-マイク</dcndl:callNumber>
</dcndl:Item>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R100000001-I093149565-00#item">
<dcndl:holdingAgent>
<foaf:Agent>
<foaf:name>静岡市立中央図書館</foaf:name>
<dcndl:transcription>シズオカシリツチュウオウトショカン</dcndl:transcription>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLLibCode">2221</dcterms:identifier>
</foaf:Agent>
</dcndl:holdingAgent>
<rdfs:seeAlso rdf:resource="https://www2.toshokan.city.shizuoka.jp/winj/opac/switch-detail-iccap.do?bibid=1101789237"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuBibID">1101789237</dcterms:identifier>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuSubID">114306036</dcterms:identifier>
<dcndl:callNumber>007.64-ト</dcndl:callNumber>
<dcndl:availability>持出可能</dcndl:availability>
<dcterms:description>所蔵場所 : 2階一般</dcterms:description>
</dcndl:Item>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R100000001-I097948062-00#item">
<dcndl:holdingAgent>
<foaf:Agent>
<foaf:name>横浜市立図書館</foaf:name>
<dcndl:transcription>ヨコハマシリツトショカン</dcndl:transcription>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLLibCode">1421</dcterms:identifier>
</foaf:Agent>
</dcndl:holdingAgent>
<rdfs:seeAlso rdf:resource="https://opac.lib.city.yokohama.lg.jp/opac/OPP1500?SELDATA=TOSHO&SSNO=3-0210087605"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuBibID">3-0210087605</dcterms:identifier>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuSubID">2046112361</dcterms:identifier>
<dcndl:callNumber>007.6/14435</dcndl:callNumber>
<dcterms:description>配置場所 : 中央図書館 書庫(自然科学中央)</dcterms:description>
</dcndl:Item>
<dcndl:Item rdf:about="http://iss.ndl.go.jp/books/R100000001-I108785037-00#item">
<dcndl:holdingAgent>
<foaf:Agent>
<foaf:name>札幌市中央図書館</foaf:name>
<dcndl:transcription>さっぽろしちゅうおうとしょかん</dcndl:transcription>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NDLLibCode">0121</dcterms:identifier>
</foaf:Agent>
</dcndl:holdingAgent>
<rdfs:seeAlso rdf:resource="https://www.library.city.sapporo.jp/licsxp-opac/WOpacMsgNewListToTifTilDetailAction.do?tilcod=1008000352544"/>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuBibID">1008000352544</dcterms:identifier>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/somokuSubID">0118566272</dcterms:identifier>
<dcndl:callNumber>007.6/マ/</dcndl:callNumber>
<dcndl:availability>一般貸出</dcndl:availability>
<dcterms:description>配架場所 : 1階図書室</dcterms:description>
<dcterms:description>資料種別 : 一般図書</dcterms:description>
</dcndl:Item>
</rdf:RDF>
</recordData>
<recordPosition>9</recordPosition>
</record>
<record>
<recordSchema>info:srw/schema/1/dc-v1.1</recordSchema>
<recordPacking>xml</recordPacking>
<recordData>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcndl="http://ndl.go.jp/dcndl/terms/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:owl="http://www.w3.org/2002/07/owl#">
<dcndl:BibAdminResource rdf:about="http://iss.ndl.go.jp/books/R100000096-I012523583-00">
<dcndl:bibRecordCategory>R100000096</dcndl:bibRecordCategory>
<dcndl:record rdf:resource="http://iss.ndl.go.jp/books/R100000096-I012523583-00#material"/>
</dcndl:BibAdminResource>
<dcndl:BibResource rdf:about="http://iss.ndl.go.jp/books/R100000096-I012523583-00#material">
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/NIIBibID">BC08764153</dcterms:identifier>
<dcterms:identifier rdf:datatype="http://ndl.go.jp/dcndl/terms/ISBN">9784296080021</dcterms:identifier>
<rdfs:seeAlso rdf:resource="http://iss.ndl.go.jp/isbn/9784296080021"/>
<rdfs:seeAlso rdf:resource="https://ci.nii.ac.jp/ncid/BC08764153"/>
<dcterms:title>.NET5プログラミング入門</dcterms:title>
<dc:title>
<rdf:Description>
<rdf:value>.NET5プログラミング入門</rdf:value>
<dcndl:transcription>.NET 5 プログラミング ニュウモン</dcndl:transcription>
</rdf:Description>
</dc:title>
<dcterms:creator>
<foaf:Agent rdf:about="https://ci.nii.ac.jp/author/DA15393246#entity">
<foaf:name>増田, 智明</foaf:name>
<dcndl:transcription>マスダ, トモアキ</dcndl:transcription>
</foaf:Agent>
</dcterms:creator>
<dc:creator>増田智明著</dc:creator>
<dcterms:publisher>
<foaf:Agent>
<foaf:name>日経BP</foaf:name>
</foaf:Agent>
</dcterms:publisher>
<dcterms:publisher>
<foaf:Agent>
<foaf:name>日経BPマーケティング (発売)</foaf:name>
</foaf:Agent>
</dcterms:publisher>
<dcterms:date>2021.7</dcterms:date>
<dcterms:issued rdf:datatype="http://purl.org/dc/terms/W3CDTF">2021</dcterms:issued>
<dcterms:subject>
<rdf:Description>
<rdf:value>プログラミング(コンピュータ)</rdf:value>
</rdf:Description>
</dcterms:subject>
<dcterms:subject>
<rdf:Description>
<rdf:value>プログラミング(コンピュータ)</rdf:value>
</rdf:Description>
</dcterms:subject>
<dcterms:subject rdf:resource="http://id.ndl.go.jp/class/ndc9/007.64"/>
<dcterms:subject rdf:resource="http://id.ndl.go.jp/class/ndc10/007.64"/>
<dcterms:subject rdf:resource="http://id.ndl.go.jp/class/ndlc/M159"/>
<dcterms:language rdf:datatype="http://purl.org/dc/terms/ISO639-2">jpn</dcterms:language>
<dcterms:extent>8, 263p</dcterms:extent>
<dcterms:extent>24cm</dcterms:extent>
<dcterms:audience>一般</dcterms:audience>
<dcndl:materialType rdf:resource="http://ndl.go.jp/ndltype/Book" rdfs:label="図書"/>
<dcndl:materialType rdf:resource="http://ndl.go.jp/ndltype/Book" rdfs:label="図書"/>
<dcndl:materialType rdf:resource="http://ndl.go.jp/ndltype/Book" rdfs:label="図書"/>
</dcndl:BibResource>
</rdf:RDF>
</recordData>
<recordPosition>10</recordPosition>
</record>
</records>
</searchRetrieveResponse>
検索用API(OpenSearch)
アクセス URL は https://ndlsearch.ndl.go.jp/api/opensearch で、主要なパラメータは以下の通りです。SRU の CQL とは違い、全てのパラメータが並列に記載可能です。
参照名 | 値 | 省略時 |
---|---|---|
title | タイトル | |
creator | 作成者 | |
from | 出版年(開始) | |
cnt | 最大取得件数 | 200 |
idx | 開始位置 | 1 |
タイトルに"プログラミング"を含む書誌情報を最初の10件だけ取得する場合は以下の URL になります。
レスポンスは RSS2.0 を独自に拡張したものです。
レスポンス
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:dcndl="http://ndl.go.jp/dcndl/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<channel>
<title>プログラミング - 国立国会図書館サーチ OpenSearch</title>
<link>https://iss.ndl.go.jp/api/opensearch?cnt=10&title=%E3%83%97%E3%83%AD%E3%82%B0%E3%83%A9%E3%83%9F%E3%83%B3%E3%82%B0</link>
<description>Search results for title=プログラミング cnt=10 </description>
<language>ja</language>
<openSearch:totalResults>30041</openSearch:totalResults>
<openSearch:startIndex>1</openSearch:startIndex>
<openSearch:itemsPerPage>10</openSearch:itemsPerPage>
<item>
<title>"I"見聞録(第39回)函数プログラミングの集い2011 in Tokyo</title>
<link>https://iss.ndl.go.jp/books/R000000004-I023576269-00</link>
<description>
<![CDATA[<p></p>
<ul><li>タイトル: "I"見聞録(第39回)函数プログラミングの集い2011 in Tokyo</li>
<li>タイトル(読み): "I"ケンブンロク(ダイ39カイ)カンスウ プログラミング ノ ツドイ 2011 in Tokyo</li>
<li>責任表示: 山本 和彦,</li>
</ul>]]>
</description>
<author>山本 和彦,山本 和彦,</author>
<category>記事・論文</category>
<guid isPermaLink="true">https://iss.ndl.go.jp/books/R000000004-I023576269-00</guid>
<pubDate>Wed, 25 Apr 2012 09:00:00 +0900</pubDate>
<dc:title>"I"見聞録(第39回)函数プログラミングの集い2011 in Tokyo</dc:title>
<dcndl:titleTranscription>"I"ケンブンロク(ダイ39カイ)カンスウ プログラミング ノ ツドイ 2011 in Tokyo</dcndl:titleTranscription>
<dc:creator>山本 和彦</dc:creator>
<dcterms:issued xsi:type="dcterms:W3CDTF">2012-04</dcterms:issued>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/books/R100000002-I000000011527-00"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issn/04478053"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issnl/04478053"/>
<dc:identifier xsi:type="dcndl:NDLBibID">023576269</dc:identifier>
<dc:subject xsi:type="dcndl:NDLC">ZM13</dc:subject>
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/bib/023576269"/>
<dc:description>掲載誌:情報処理 : 情報処理学会誌 : IPSJ magazine 53(4) (通号 565) 2012-04 p.438-442</dc:description>
</item>
<item>
<title>"死活問題"に直結する必須の「"新"ビジネス教養」 「MBA」を学び始める人は、センスがない!? 「プログラミングが分かる側」に入らないと、生き残れない : INTERVIEW 南場智子さん DeNA会長</title>
<link>https://iss.ndl.go.jp/books/R000000004-I027653354-00</link>
<description>
<![CDATA[<p></p>
<ul><li>タイトル: "死活問題"に直結する必須の「"新"ビジネス教養」 「MBA」を学び始める人は、センスがない!? 「プログラミングが分かる側」に入らないと、生き残れない : INTERVIEW 南場智子さん DeNA会長</li>
<li>タイトル(読み): "シカツ モンダイ"ニ チョッケツ スル ヒッス ノ 「"シン"ビジネス キョウヨウ 」 「 MBA 」 オ マナビ ハジメル ヒト ワ 、 センス ガ ナイ!? 「 プログラミング ガ ワカル ガワ 」 ニ ハイラナイ ト 、 イキノコレナイ : INTERVIEW ミナミジョウ トモコ サン DeNA カイチョウ</li>
<li>責任表示: 南場 智子,</li>
<li>シリーズ名: 特集 文系ビジネスパーソンでもわかる「プログラミング」超入門 ; プログラミングを学ぶべき理由</li>
<li>シリーズ名(読み): トクシュウ ブンケイ ビジネスパーソン デモ ワカル 「 プログラミング 」 チョウニュウモン ; プログラミング オ マナブ ベキ リユウ</li>
</ul>]]>
</description>
<author>南場 智子,南場 智子,</author>
<category>記事・論文</category>
<guid isPermaLink="true">https://iss.ndl.go.jp/books/R000000004-I027653354-00</guid>
<pubDate>Wed, 19 Oct 2016 09:00:00 +0900</pubDate>
<dc:title>"死活問題"に直結する必須の「"新"ビジネス教養」 「MBA」を学び始める人は、センスがない!? 「プログラミングが分かる側」に入らないと、生き残れない : INTERVIEW 南場智子さん DeNA会長</dc:title>
<dcndl:titleTranscription>"シカツ モンダイ"ニ チョッケツ スル ヒッス ノ 「"シン"ビジネス キョウヨウ 」 「 MBA 」 オ マナビ ハジメル ヒト ワ 、 センス ガ ナイ!? 「 プログラミング ガ ワカル ガワ 」 ニ ハイラナイ ト 、 イキノコレナイ : INTERVIEW ミナミジョウ トモコ サン DeNA カイチョウ</dcndl:titleTranscription>
<dc:creator>南場 智子</dc:creator>
<dcndl:creatorTranscription>ナンバ トモコ</dcndl:creatorTranscription>
<dcndl:seriesTitle>特集 文系ビジネスパーソンでもわかる「プログラミング」超入門 ; プログラミングを学ぶべき理由</dcndl:seriesTitle>
<dcndl:seriesTitleTranscription>トクシュウ ブンケイ ビジネスパーソン デモ ワカル 「 プログラミング 」 チョウニュウモン ; プログラミング オ マナブ ベキ リユウ</dcndl:seriesTitleTranscription>
<dcterms:issued xsi:type="dcterms:W3CDTF">2016-10</dcterms:issued>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/books/R100000002-I000000411022-00"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issn/13472844"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issnl/13472844"/>
<dc:identifier xsi:type="dcndl:NDLBibID">027653354</dc:identifier>
<dc:subject xsi:type="dcndl:NDLC">ZD1</dc:subject>
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/bib/027653354"/>
<dc:description>掲載誌:日経ビジネスassocié 15(11) (通号 305) 2016-10 p.98-101</dc:description>
</item>
<item>
<title>"耐える"ための代謝リプログラミング : エネルギー制御シグナル調節による癌の生存戦略</title>
<link>https://iss.ndl.go.jp/books/R000000004-I025554275-00</link>
<description>
<![CDATA[<p></p>
<ul><li>タイトル: "耐える"ための代謝リプログラミング : エネルギー制御シグナル調節による癌の生存戦略</li>
<li>タイトル(読み): "タエル"タメ ノ タイシャ リプログラミング : エネルギー セイギョ シグナル チョウセツ ニ ヨル ガン ノ セイゾン センリャク</li>
<li>責任表示: 平尾 敦,</li>
<li>シリーズ名: 第1土曜特集 癌幹細胞 ; 癌幹細胞制御の分子学的メカニズム</li>
<li>シリーズ名(読み): ダイ1 ドヨウ トクシュウ ガン カンサイボウ ; ガン カンサイボウ セイギョ ノ ブンシガクテキ メカニズム</li>
</ul>]]>
</description>
<author>平尾 敦,平尾 敦,</author>
<category>記事・論文</category>
<guid isPermaLink="true">https://iss.ndl.go.jp/books/R000000004-I025554275-00</guid>
<pubDate>Thu, 10 Jul 2014 09:00:00 +0900</pubDate>
<dc:title>"耐える"ための代謝リプログラミング : エネルギー制御シグナル調節による癌の生存戦略</dc:title>
<dcndl:titleTranscription>"タエル"タメ ノ タイシャ リプログラミング : エネルギー セイギョ シグナル チョウセツ ニ ヨル ガン ノ セイゾン センリャク</dcndl:titleTranscription>
<dc:creator>平尾 敦</dc:creator>
<dcndl:creatorTranscription>ヒラオ アツシ</dcndl:creatorTranscription>
<dcndl:seriesTitle>第1土曜特集 癌幹細胞 ; 癌幹細胞制御の分子学的メカニズム</dcndl:seriesTitle>
<dcndl:seriesTitleTranscription>ダイ1 ドヨウ トクシュウ ガン カンサイボウ ; ガン カンサイボウ セイギョ ノ ブンシガクテキ メカニズム</dcndl:seriesTitleTranscription>
<dcterms:issued xsi:type="dcterms:W3CDTF">2014-07-05</dcterms:issued>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/books/R100000002-I000000001370-00"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issn/00392359"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issnl/00392359"/>
<dc:identifier xsi:type="dcndl:NDLBibID">025554275</dc:identifier>
<dc:subject>エネルギー代謝制御シグナル</dc:subject>
<dc:subject>HIF1</dc:subject>
<dc:subject>FOXO</dc:subject>
<dc:subject>mTOR</dc:subject>
<dc:subject>AMPK</dc:subject>
<dc:subject>解糖系</dc:subject>
<dc:subject>酸化的リン酸化</dc:subject>
<dc:subject>ATP</dc:subject>
<dc:subject xsi:type="dcndl:NDLC">ZS7</dc:subject>
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/bib/025554275"/>
<dc:description>掲載誌:医学のあゆみ 250(1) (通号 3009) 2014-07-05 p.59-63</dc:description>
</item>
<item>
<title>"プログラミングスクールのハーバード大"「HACK REACTOR」に潜入 卒業生が平均年収1000万円を実現できる理由</title>
<link>https://iss.ndl.go.jp/books/R000000004-I027653316-00</link>
<description>
<![CDATA[<p></p>
<ul><li>タイトル: "プログラミングスクールのハーバード大"「HACK REACTOR」に潜入 卒業生が平均年収1000万円を実現できる理由</li>
<li>タイトル(読み): "プログラミングスクール ノ ハーバード ダイ"「 HACK REACTOR 」 ニ センニュウ ソツギョウセイ ガ ヘイキン ネンシュウ 1000マンエン オ ジツゲン デキル リユウ</li>
<li>責任表示: 飯塚 真紀子,</li>
<li>シリーズ名: 特集 文系ビジネスパーソンでもわかる「プログラミング」超入門</li>
<li>シリーズ名(読み): トクシュウ ブンケイ ビジネスパーソン デモ ワカル 「 プログラミング 」 チョウニュウモン</li>
</ul>]]>
</description>
<author>飯塚 真紀子,飯塚 真紀子,</author>
<category>記事・論文</category>
<guid isPermaLink="true">https://iss.ndl.go.jp/books/R000000004-I027653316-00</guid>
<pubDate>Wed, 19 Oct 2016 09:00:00 +0900</pubDate>
<dc:title>"プログラミングスクールのハーバード大"「HACK REACTOR」に潜入 卒業生が平均年収1000万円を実現できる理由</dc:title>
<dcndl:titleTranscription>"プログラミングスクール ノ ハーバード ダイ"「 HACK REACTOR 」 ニ センニュウ ソツギョウセイ ガ ヘイキン ネンシュウ 1000マンエン オ ジツゲン デキル リユウ</dcndl:titleTranscription>
<dc:creator>飯塚 真紀子</dc:creator>
<dcndl:seriesTitle>特集 文系ビジネスパーソンでもわかる「プログラミング」超入門</dcndl:seriesTitle>
<dcndl:seriesTitleTranscription>トクシュウ ブンケイ ビジネスパーソン デモ ワカル 「 プログラミング 」 チョウニュウモン</dcndl:seriesTitleTranscription>
<dcterms:issued xsi:type="dcterms:W3CDTF">2016-10</dcterms:issued>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/books/R100000002-I000000411022-00"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issn/13472844"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issnl/13472844"/>
<dc:identifier xsi:type="dcndl:NDLBibID">027653316</dc:identifier>
<dc:subject xsi:type="dcndl:NDLC">ZD1</dc:subject>
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/bib/027653316"/>
<dc:description>掲載誌:日経ビジネスassocié 15(11) (通号 305) 2016-10 p.88-91</dc:description>
</item>
<item>
<title>"プログラミング的"を意識した小学校でのプログラミング体験授業の実践</title>
<link>https://iss.ndl.go.jp/books/R000000004-I031799214-00</link>
<description>
<![CDATA[<p></p>
<ul><li>タイトル: "プログラミング的"を意識した小学校でのプログラミング体験授業の実践</li>
<li>タイトル(読み): "プログラミングテキ"オ イシキ シタ ショウガッコウ デ ノ プログラミング タイケン ジュギョウ ノ ジッセン</li>
<li>責任表示: 上 泰,岩野 優樹,梶村 好宏,</li>
</ul>]]>
</description>
<author>上 泰,岩野 優樹,梶村 好宏,上 泰,岩野 優樹,梶村 好宏,</author>
<category>記事・論文</category>
<guid isPermaLink="true">https://iss.ndl.go.jp/books/R000000004-I031799214-00</guid>
<pubDate>Thu, 18 Nov 2021 09:00:00 +0900</pubDate>
<dc:title>"プログラミング的"を意識した小学校でのプログラミング体験授業の実践</dc:title>
<dcndl:titleTranscription>"プログラミングテキ"オ イシキ シタ ショウガッコウ デ ノ プログラミング タイケン ジュギョウ ノ ジッセン</dcndl:titleTranscription>
<dc:creator>上 泰</dc:creator>
<dc:creator>岩野 優樹</dc:creator>
<dc:creator>梶村 好宏</dc:creator>
<dcndl:creatorTranscription>カミ ヤスシ</dcndl:creatorTranscription>
<dcndl:creatorTranscription>イワノ ユウキ</dcndl:creatorTranscription>
<dcndl:creatorTranscription>カジムラ ヨシヒロ</dcndl:creatorTranscription>
<dcterms:issued xsi:type="dcterms:W3CDTF">2021</dcterms:issued>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/books/R100000002-I000000066350-00"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issn/09161600"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issnl/09161600"/>
<dc:identifier xsi:type="dcndl:NDLBibID">031799214</dc:identifier>
<dc:subject>programming education</dc:subject>
<dc:subject>elementary school students</dc:subject>
<dc:subject>computational thinking</dc:subject>
<dc:subject>micro:bit</dc:subject>
<dc:subject xsi:type="dcndl:NDLC">ZM11</dc:subject>
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/bib/031799214"/>
<dc:description>掲載誌:システム・制御・情報 = Systems, control and information : システム制御情報学会誌 65(11) 2021 p.433-438</dc:description>
</item>
<item>
<title>(1)離散化,(2)計算の簡略化で高速演算,(3)メモリ節約アルゴリズムの適用 マイコンと音声信号で体験! フーリエ変換プログラムの実装</title>
<link>https://iss.ndl.go.jp/books/R000000004-I031618513-00</link>
<description>
<![CDATA[<p></p>
<ul><li>タイトル: (1)離散化,(2)計算の簡略化で高速演算,(3)メモリ節約アルゴリズムの適用 マイコンと音声信号で体験! フーリエ変換プログラムの実装</li>
<li>タイトル(読み): (1)リサンカ,(2)ケイサン ノ カンリャクカ デ コウソク エンザン,(3)メモリ セツヤク アルゴリズム ノ テキヨウ マイコン ト オンセイ シンゴウ デ タイケン! フーリエ ヘンカン プログラム ノ ジッソウ</li>
<li>責任表示: 星野 秋人,</li>
<li>シリーズ名: 特集 数学とプログラミング ; 数学を使ったプログラミング実例集</li>
<li>シリーズ名(読み): トクシュウ スウガク ト プログラミング ; スウガク オ ツカッタ プログラミング ジツレイシュウ</li>
</ul>]]>
</description>
<author>星野 秋人,星野 秋人,</author>
<category>記事・論文</category>
<guid isPermaLink="true">https://iss.ndl.go.jp/books/R000000004-I031618513-00</guid>
<pubDate>Mon, 23 Aug 2021 09:00:00 +0900</pubDate>
<dc:title>(1)離散化,(2)計算の簡略化で高速演算,(3)メモリ節約アルゴリズムの適用 マイコンと音声信号で体験! フーリエ変換プログラムの実装</dc:title>
<dcndl:titleTranscription>(1)リサンカ,(2)ケイサン ノ カンリャクカ デ コウソク エンザン,(3)メモリ セツヤク アルゴリズム ノ テキヨウ マイコン ト オンセイ シンゴウ デ タイケン! フーリエ ヘンカン プログラム ノ ジッソウ</dcndl:titleTranscription>
<dc:creator>星野 秋人</dc:creator>
<dcndl:creatorTranscription>ホシノ アキヒト</dcndl:creatorTranscription>
<dcndl:seriesTitle>特集 数学とプログラミング ; 数学を使ったプログラミング実例集</dcndl:seriesTitle>
<dcndl:seriesTitleTranscription>トクシュウ スウガク ト プログラミング ; スウガク オ ツカッタ プログラミング ジツレイシュウ</dcndl:seriesTitleTranscription>
<dcterms:issued xsi:type="dcterms:W3CDTF">2021-09</dcterms:issued>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/books/R100000002-I000000032482-00"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issn/03879569"/>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/issnl/03879569"/>
<dc:identifier xsi:type="dcndl:NDLBibID">031618513</dc:identifier>
<dc:subject xsi:type="dcndl:NDLC">ZM13</dc:subject>
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/bib/031618513"/>
<dc:description>掲載誌:インターフェース = Interface 47(9) (通号 531) 2021-09 p.49-57</dc:description>
</item>
<item>
<title>(公財)学習情報研究センター主催 情報教育セミナー2020 講演要項 AI時代の教育の実現 : プログラミング教育の在り方</title>
<link>https://iss.ndl.go.jp/books/R000000004-I030700721-00</link>
<description>
<![CDATA[<p></p>
<ul><li>タイトル: (公財)学習情報研究センター主催 情報教育セミナー2020 講演要項 AI時代の教育の実現 : プログラミング教育の在り方</li>
<li>タイトル(読み): (コウザイ)ガクシュウ ジョウホウ ケンキュウ センター シュサイ ジョウホウ キョウイク セミナー 2020 コウエン ヨウコウ AI ジダイ ノ キョウイク ノ ジツゲン : プログラミング キョウイク ノ アリカタ</li>
<li>責任表示: 清水 静海,</li>
<li>シリーズ名: 「情報教育セミナー2020」開催(速報)</li>
<li>シリーズ名(読み): 「 ジョウホウ キョウイク セミナー 2020 」 カイサイ(ソクホウ)</li>
</ul>]]>
</description>
<author>清水 静海,清水 静海,</author>
<category>記事・論文</category>
<guid isPermaLink="true">https://iss.ndl.go.jp/books/R000000004-I030700721-00</guid>
<pubDate>Tue, 27 Oct 2020 09:00:00 +0900</pubDate>
<dc:title>(公財)学習情報研究センター主催 情報教育セミナー2020 講演要項 AI時代の教育の実現 : プログラミング教育の在り方</dc:title>
<dcndl:titleTranscription>(コウザイ)ガクシュウ ジョウホウ ケンキュウ センター シュサイ ジョウホウ キョウイク セミナー 2020 コウエン ヨウコウ AI ジダイ ノ キョウイク ノ ジツゲン : プログラミング キョウイク ノ アリカタ</dcndl:titleTranscription>
<dc:creator>清水 静海</dc:creator>
<dcndl:seriesTitle>「情報教育セミナー2020」開催(速報)</dcndl:seriesTitle>
<dcndl:seriesTitleTranscription>「 ジョウホウ キョウイク セミナー 2020 」 カイサイ(ソクホウ)</dcndl:seriesTitleTranscription>
<dcterms:issued xsi:type="dcterms:W3CDTF">2020-11</dcterms:issued>
<dcterms:isPartOf rdf:resource="http://iss.ndl.go.jp/books/R100000002-I000007426113-00"/>
<dc:identifier xsi:type="dcndl:NDLBibID">030700721</dc:identifier>
<dc:subject xsi:type="dcndl:NDLC">ZF1</dc:subject>
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/bib/030700721"/>
<dc:description>掲載誌:学習情報研究 = Learning resources and information(277) 2020-11 p.2-9</dc:description>
</item>
<item>
<title>.NET CoreによるRaspberry Piプログラミング</title>
<link>https://iss.ndl.go.jp/books/R100000096-I012011217-00</link>
<description>
<![CDATA[<p>カットシステム,9784877834661</p>
<ul><li>タイトル: .NET CoreによるRaspberry Piプログラミング</li>
<li>タイトル(読み): . NET Core ニ ヨル Raspberry Pi プログラミング</li>
<li>責任表示: 川口直也著,</li>
<li>NDC(10): 007.64</li>
<li>NDC(9): 007.64</li>
</ul>]]>
</description>
<author>川口直也著,川口, 直也,</author>
<category>本</category>
<guid isPermaLink="true">https://iss.ndl.go.jp/books/R100000096-I012011217-00</guid>
<dc:title>.NET CoreによるRaspberry Piプログラミング</dc:title>
<dcndl:titleTranscription>. NET Core ニ ヨル Raspberry Pi プログラミング</dcndl:titleTranscription>
<dc:creator>川口, 直也</dc:creator>
<dcndl:creatorTranscription>カワグチ, ナオヤ</dcndl:creatorTranscription>
<dc:publisher>カットシステム</dc:publisher>
<dc:date>2019.5</dc:date>
<dcterms:issued xsi:type="dcterms:W3CDTF">2019</dcterms:issued>
<dc:extent>xii, 231p</dc:extent>
<dc:extent>24cm</dc:extent>
<dc:identifier xsi:type="dcndl:ISBN">9784877834661</dc:identifier>
<dc:identifier xsi:type="dcndl:NIIBibID">BB2842465X</dc:identifier>
<dc:subject>プログラミング(コンピュータ)</dc:subject>
<dc:subject xsi:type="dcndl:NDC10">007.64</dc:subject>
<dc:subject xsi:type="dcndl:NDC9">007.64</dc:subject>
<dc:subject xsi:type="dcndl:NDC8">007.64</dc:subject>
<rdfs:seeAlso rdf:resource="http://ci.nii.ac.jp/ncid/BB2842465X"/>
</item>
<item>
<title>.NET開発テクノロジー入門 : Visual Studio 2010対応版</title>
<link>https://iss.ndl.go.jp/books/R100000002-I000011052587-00</link>
<description>
<![CDATA[<p>日経BP社,9784822294410</p>
<ul><li>タイトル: .NET開発テクノロジー入門 : Visual Studio 2010対応版</li>
<li>タイトル(読み): . NET カイハツ テクノロジー ニュウモン : Visual Studio 2010 タイオウバン</li>
<li>責任表示: マイクロソフト株式会社エバンジェリストチーム 著,新村剛史 監修,</li>
<li>シリーズ名: MSDNプログラミングシリーズ</li>
<li>シリーズ名(読み): MSDN プログラミング シリーズ</li>
<li>NDC(9): 007.64</li>
</ul>]]>
</description>
<author>マイクロソフト株式会社エバンジェリストチーム 著,新村剛史 監修,新村, 剛史,マイクロソフト株式会社,</author>
<category>本</category>
<guid isPermaLink="true">https://iss.ndl.go.jp/books/R100000002-I000011052587-00</guid>
<pubDate>Mon, 24 Jan 2011 09:00:00 +0900</pubDate>
<dc:title>.NET開発テクノロジー入門 : Visual Studio 2010対応版</dc:title>
<dcndl:titleTranscription>. NET カイハツ テクノロジー ニュウモン : Visual Studio 2010 タイオウバン</dcndl:titleTranscription>
<dc:creator>新村, 剛史</dc:creator>
<dc:creator>マイクロソフト株式会社</dc:creator>
<dcndl:creatorTranscription>ニイムラ, ツヨシ</dcndl:creatorTranscription>
<dcndl:seriesTitle>MSDNプログラミングシリーズ</dcndl:seriesTitle>
<dcndl:seriesTitleTranscription>MSDN プログラミング シリーズ</dcndl:seriesTitleTranscription>
<dc:publisher>日経BP社</dc:publisher>
<dc:publisher>日経BPマーケティング</dc:publisher>
<dc:date>2010.12</dc:date>
<dcterms:issued xsi:type="dcterms:W3CDTF">2010</dcterms:issued>
<dcndl:price>3800円</dcndl:price>
<dc:extent>436p ; 24cm</dc:extent>
<dc:identifier xsi:type="dcndl:ISBN">9784822294410</dc:identifier>
<dc:identifier xsi:type="dcndl:NDLBibID">000011052587</dc:identifier>
<dc:identifier xsi:type="dcndl:JPNO">21861209</dc:identifier>
<dc:identifier xsi:type="dcndl:NSMARCNO">120059600</dc:identifier>
<dc:subject>プログラミング (コンピュータ)</dc:subject>
<dc:subject xsi:type="dcndl:NDLC">M159</dc:subject>
<dc:subject xsi:type="dcndl:NDC9">007.64</dc:subject>
<dc:description>索引あり</dc:description>
<rdfs:seeAlso rdf:resource="http://id.ndl.go.jp/bib/000011052587"/>
<rdfs:seeAlso rdf:resource="https://www.library-archives.pref.fukui.lg.jp/wo/opc_srh/srh_detail/1104970590/"/>
<rdfs:seeAlso rdf:resource="https://web.oml.city.osaka.lg.jp/webopac_i_ja/0012197158"/>
<rdfs:seeAlso rdf:resource="https://catalog.library.metro.tokyo.lg.jp/winj/opac/switch-detail-iccap.do?bibid=1108240616"/>
<rdfs:seeAlso rdf:resource="https://opac.libnet.pref.okayama.jp/licsxp-opac/WOpacMsgNewListToTifTilDetailAction.do?tilcod=1009811364788"/>
<rdfs:seeAlso rdf:resource="https://www.lib-sakai.jp/licsxp-opac/WOpacMsgNewListToTifTilDetailAction.do?tilcod=1007000036779"/>
<rdfs:seeAlso rdf:resource="http://opacsvr01.library.pref.nara.jp/mylimedio/search/book.do?bibid=450837"/>
<rdfs:seeAlso rdf:resource="https://www2.toshokan.city.shizuoka.jp/winj/opac/switch-detail-iccap.do?bibid=1101789237"/>
<rdfs:seeAlso rdf:resource="https://opac.lib.city.yokohama.lg.jp/opac/OPP1500?SELDATA=TOSHO&SSNO=3-0210087605"/>
<rdfs:seeAlso rdf:resource="https://www.library.city.sapporo.jp/licsxp-opac/WOpacMsgNewListToTifTilDetailAction.do?tilcod=1008000352544"/>
</item>
<item>
<title>.NET5プログラミング入門</title>
<link>https://iss.ndl.go.jp/books/R100000096-I012523583-00</link>
<description>
<![CDATA[<p>日経BP,9784296080021</p>
<ul><li>タイトル: .NET5プログラミング入門</li>
<li>タイトル(読み): .NET 5 プログラミング ニュウモン</li>
<li>責任表示: 増田智明著,</li>
<li>NDC(10): 007.64</li>
<li>NDC(9): 007.64</li>
</ul>]]>
</description>
<author>増田智明著,増田, 智明,</author>
<category>本</category>
<guid isPermaLink="true">https://iss.ndl.go.jp/books/R100000096-I012523583-00</guid>
<dc:title>.NET5プログラミング入門</dc:title>
<dcndl:titleTranscription>.NET 5 プログラミング ニュウモン</dcndl:titleTranscription>
<dc:creator>増田, 智明</dc:creator>
<dcndl:creatorTranscription>マスダ, トモアキ</dcndl:creatorTranscription>
<dc:publisher>日経BP</dc:publisher>
<dc:publisher>日経BPマーケティング (発売)</dc:publisher>
<dc:date>2021.7</dc:date>
<dcterms:issued xsi:type="dcterms:W3CDTF">2021</dcterms:issued>
<dc:extent>8, 263p</dc:extent>
<dc:extent>24cm</dc:extent>
<dc:identifier xsi:type="dcndl:ISBN">9784296080021</dc:identifier>
<dc:identifier xsi:type="dcndl:NIIBibID">BC08764153</dc:identifier>
<dc:subject>プログラミング(コンピュータ)</dc:subject>
<dc:subject>プログラミング(コンピュータ)</dc:subject>
<dc:subject xsi:type="dcndl:NDLC">M159</dc:subject>
<dc:subject xsi:type="dcndl:NDC10">007.64</dc:subject>
<dc:subject xsi:type="dcndl:NDC9">007.64</dc:subject>
<rdfs:seeAlso rdf:resource="https://ci.nii.ac.jp/ncid/BC08764153"/>
</item>
</channel>
</rss>
書影API
単一の書籍の書影画像(JPEG)を取得できる API です。書誌は ISBN で指定しますので、ISBN を持ってない書誌の書影は残念ながら取得できません。
ISBN の指定は ISBN-13 で行い、ハイフンは省きます。例えば https://ndlsearch.ndl.go.jp/thumbnail/9784320026926.jpg とすれば「プログラミング言語C 第2版」の書影が取得できます。
指定した書誌の書影が登録されていない場合や ISBN として不正な値で合った場合はステータスコード 404 が返されます。
RSS の提供
国立国会図書館サーチでは RSS で最新書誌情報の提供も行っています。提供される RSS は国立国会図書館サーチが提供するRSSに一覧されています。用途によっては API をひたすら叩くよりも、RSS を受信する方法もあるでしょう。
(2024/2/19追記)
2024年1月のリニューアルでこのページはなくなってしまったようです。
RSS・メールマガジン・ソーシャルメディアアカウント一覧でその他の RSS の一覧を確認することが出来ます。
(2024/2/19追記おわり)
2024年1月リニューアル
(2024/2/19追記)
2024年1月に国立国会図書館サーチ API のリニューアルがありました。
ざっと見たところとして大きいのはアクセス URL の変更です。https://iss.ndl.go.jp/api/*
から https://ndlsearch.ndl.go.jp/api/*
へと変わっています。ただし旧 URL からのリダイレクトが設定されていますので、既存のシステムをすぐさま修正する必要はありません。
詳細な変更点はリンク先をご覧ください。