Skip to content
/ grlc Public
forked from CLARIAH/grlc

Builds Web APIs using SPARQL queries stored in GitHub repositories

Notifications You must be signed in to change notification settings

iospress/grlc

This branch is 756 commits behind CLARIAH/grlc:master.

Repository files navigation

Join the chat at https://gitter.im/grlc

grlc, the git repository linked data API constructor, automatically builds Web APIs using SPARQL queries stored in git repositories. http://grlc.io/

Author: Albert Meroño
Copyright: Albert Meroño, VU University Amsterdam
License: MIT License (see license.txt)

Install and run

git clone https://github.com/CLARIAH/grlc
cd grlc
virtualenv .
source bin/activate
pip install -r requirements.txt
python src/server.py

Direct your browser to http://localhost:8088.

Alternatively, you can use the provided Gunicorn configuration to run it as a daemon on your server.

Docker

A bundle containing grlc, nginx and other dependencies is available at https://hub.docker.com/. If you have a working installation of docker and docker-compose, you can quickly deploy grlc in your system:

  • docker pull clariah/grlc:1.0.0: install the container
  • docker-compose up: launch grlc
  • docker-compose up /bin/bash: get into container

Usage

grlc assumes a GitHub repository (support for general git repos is on the way) where you store your SPARQL queries as .rq files (like in this one). grlc will create an API operation per such a SPARQL query/.rq file.

If you're seeing this, your grlc instance is up and running, and ready to build APIs. Assuming you got it running at http://localhost:8088/ and your queries are at https://github.com/CEDAR-project/Queries, just point your browser to the following locations:

By default grlc will direct your queries to the DBPedia SPARQL endpoint. To change this either:

  • Add a endpoint: decorator in the first comment block of the query text (preferred, see below)
  • Add the URL of the endpoint on a single line in an endpoint.txt file within the GitHub repository that contains the queries.
  • Or you can directly modify the grlc source code (but it's nicer if the queries are self-contained)

That's it!

Decorator syntax

A couple of SPARQL comment embedded decorators are available to make your swagger-ui look nicer (note all comments start with #+ ):

  • To specify a query-specific endpoint, #+ endpoint: http://example.com/sparql.

  • To indicate the HTTP request method, #+ method: GET.

  • To paginate the results in e.g. groups of 100, #+ pagination: 100.

  • To create a summary of your query/operation, #+ summary: This is the summary of my query/operation

  • To assign tags to your query/operation,

    #+ tags:
    #+   - firstTag
    #+   - secondTag
  • To indicate which parameters of your query/operation should get enumerations (and get dropdown menus in the swagger-ui),

    #+ enumerate:
    #+   - var1
    #+   - var2

    Notice that these should be plain variable names without SPARQL/BASIL conventions (so var1 instead of ?_var1_iri)

See examples at https://github.com/CEDAR-project/Queries.

Features

About

Builds Web APIs using SPARQL queries stored in GitHub repositories

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 48.6%
  • JavaScript 29.4%
  • Python 10.9%
  • HTML 9.5%
  • Shell 1.6%