This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/raptor
Vítor Santos Costa f1c9c08f1f win32: llibxml2 uses the YAP internals 2016-03-05 12:25:07 +00:00
..
cmake stop using submodule 2015-10-13 08:17:51 +01:00
CMakeLists.txt win32: llibxml2 uses the YAP internals 2016-03-05 12:25:07 +00:00
LICENSE stop using submodule 2015-10-13 08:17:51 +01:00
Makefile.in stop using submodule 2015-10-13 08:17:51 +01:00
README.md stop using submodule 2015-10-13 08:17:51 +01:00
configure.in stop using submodule 2015-10-13 08:17:51 +01:00
example.rdf stop using submodule 2015-10-13 08:17:51 +01:00
music.rdf stop using submodule 2015-10-13 08:17:51 +01:00
raptor.yap stop using submodule 2015-10-13 08:17:51 +01:00
raptor_config.h.cmake stop using submodule 2015-10-13 08:17:51 +01:00
raptor_config.h.in stop using submodule 2015-10-13 08:17:51 +01:00
raptor_yap.c stop using submodule 2015-10-13 08:17:51 +01:00
rdf.yap stop using submodule 2015-10-13 08:17:51 +01:00
xml2.yap xml2 early support 2016-01-06 12:36:36 +00:00
xml2_yap.c xml2 early support 2016-01-06 12:36:36 +00:00

README.md

@defgroup YAPRaptor An RDF Reader for YAP. @ingroup YAPPackages

#YAP raptor Interface

This provides YAP a rdf reader using raptor. The library is available for Windows, Linux/Unix and MacOS machines.

###Example Usage

?- use_module(rdf).
?- rdf_load('example.rdf',user,example).
../example.rdf : 3 triples

?- example(Subject,Predicate,Object).
Object = 'http://www.example.org/tv_show',
Predicate = 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type',
Subject = 'http://www.example.org/law_and_order_ci' ?

~~~~{.prolog}