Skip to content

gitter-badger/ckan-php-client

 
 

Repository files navigation

Build Status

ckan-php-client

API DOCs

http://docs.ckan.org/en/latest/api/index.html

Requirements

Installation

The recommended way to install is through composer.

And run these two commands to install it:

$ curl -sS https://getcomposer.org/installer | php -- --install-dir=bin

Create a composer.json file for your project:

{
    "repositories": [
        {
            "type": "git",
            "url": "https://github.com/GSA/ckan-php-client.git"
        }
    ],
    "require": {
        "CKAN/php-client": "dev-master"
    },
}

Install dependencies:

$ composer install

Now you can add the autoloader, and you will have access to the library:

<?php
require 'vendor/autoload.php';

Usage

<?php

use CKAN\Core\CkanClient;

$apiUrl = 'http://catalog.data.gov/api/3';          // CKAN API URL
$apiKey = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx';   // CKAN API KEY, if needed / or null

$Ckan = new CkanClient($apiUrl, $apiKey);

$ckanResults = $Ckan->package_search('organization:irs-gov');
$ckanResults = json_decode($ckanResults, true);

Sample

Check GSA/ckan-php-manager script as an example

About

A PHP client for the CKAN data catalog

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%