Opnaðu tilfangsgögn í gegnum nettengt API með öflugum leitarstuðningi. Ítarlegri upplýsingar má finna í aðalleiðbeiningum CKAN gagnaforritaskila og gagnabankans.
Hægt er opna Data API með eftirfarandi aðgerðum CKAN action API.
Stofna | https://ckan.hoda.jp/is/api/3/action/datastore_create |
---|---|
Uppfæra / Færa inn | https://ckan.hoda.jp/is/api/3/action/datastore_upsert |
Fyrirspurn | https://ckan.hoda.jp/is/api/3/action/datastore_search |
Fyrirspurn (með SQL) | https://ckan.hoda.jp/is/api/3/action/datastore_search_sql |
https://ckan.hoda.jp/is/api/3/action/datastore_search?resource_id=612bab95-1ef1-45a1-9629-726168636291&limit=5
https://ckan.hoda.jp/is/api/3/action/datastore_search?resource_id=612bab95-1ef1-45a1-9629-726168636291&q=jones
https://ckan.hoda.jp/is/api/3/action/datastore_search_sql?sql=SELECT * from "612bab95-1ef1-45a1-9629-726168636291" WHERE title LIKE 'jones'
Einföld ajax (JSONP) fyrirspurn til data API með jQuery.
var data = { resource_id: '612bab95-1ef1-45a1-9629-726168636291', // the resource id limit: 5, // get 5 results q: 'jones' // query for 'jones' }; $.ajax({ url: 'https://ckan.hoda.jp/is/api/3/action/datastore_search', data: data, dataType: 'jsonp', success: function(data) { alert('Total results found: ' + data.result.total) } });
import urllib url = 'https://ckan.hoda.jp/is/api/3/action/datastore_search?resource_id=612bab95-1ef1-45a1-9629-726168636291&limit=5&q=title:jones' fileobj = urllib.urlopen(url) print fileobj.read()