Projects tagged ‘rdf’ and ‘sparql’


Jump to tag:

Projects tagged ‘rdf’ and ‘sparql’

Filtered by Project Tags rdf sparql

Refine results Project Tags semanticweb (15) java (12) owl (10) semantic (8) jena (8) ontology (5) semantic_web (4) n3 (4) web (4) framework (3) xml (3) rdfs (3)

[36 total ]

10 Users
   

Sesame is a Java framework for storing, querying and inferencing for RDF. It can be deployed as a web server or used as a Java library. Features include several query languages (SeRQL and SPARQL) ... [More] , inferencing support, and RAM, disk, or RDBMS storage. [Less]
Created over 3 years ago.

7 Users
   

rdf handling library for python
Created over 2 years ago.

5 Users
   

RAP is a software package for parsing, searching, manipulating, serializing and serving RDF models.
Created over 3 years ago.

2 Users

LDAP 2 SPARQL - Accessing RDF Knowledge Bases via LDAP Clients In order to exploit the client support of LDAP directories with the semantic expressivity of RDF knowledge bases, we aim at ... [More] integrating RDF knowledge bases into LDAP directory services. LDAP 2 SPARQL is a Backend to the widely used OpenLDAP server. It translates LDAP queries into SPARQL queries, asks a SPARQL endpoint and translates the result back to LDIF. [Less]
Created over 2 years ago.

2 Users
   

A suite of tools able to process Java libraries as RDF models.
Created about 1 year ago.

2 Users

xOperator combines advantages of social network websites with instant messaging. It tries to be a semantic agent for xmpp / jabber network which finds and shares content about resources (using RDF/SPARQL) for you and your jabber friends.
Created over 2 years ago.

1 Users

Semantic, RDF-based wiki. Written in Python with Cherrypy and RDFlib.
Created about 1 year ago.

1 Users

API in Scala providing a DSL for writing, traversing and querying RDF graphs. Implemented as a façade to Jena, an RDF programming framework for Java.
Created 6 months ago.

1 Users
 

LinqToRdf provides a full-featured LINQ query provider for .NET using both local triple stores with Graph Matching and SPARQL queries on remote stores. It also provides graphical design tools for ... [More] visual studio 2008 that provide a UML style design surface for the production of both ontologies and .NET domain models. [Less]
Created about 1 year ago.

0 Users

Simple Virtuoso PL Unit Testing Framework Codebase OrganizationThere are four files: vunitutil.sql = standalone library with utility procedures. You can use these on your projects ... [More] vunitutil.tests.sql = unit tests for the above file vunit.sql = the unit testing framework itself. requires vunitutil.sql vunit.tests.sql = unit tests for the unit testing framework itself InstallationThe order in which you run the files is important when installing. There are two options: Just utilities vunitutil.sql Utilities + Framework (probably what you want) vunitutil.sql, then vunit.sql You don't want to install the unit tests (.test.sql files) unless you're working on this codebase itself. Using ItUnit tests are procedures which name is postfixed with the string 'vunittest' The reason to choose such a complex postfix (vunittest) instead of a simpler one like "test" is to avoid accidentally running a procedure that is not meant for testing, since we rely on text search over procedure names to gather all tests Within these procedures you can call assertions ( vunit_assert_true, vunit_assert_false, vunit_assert_equals, etc ) Basic-- Create a Sample Procedure: create procedure hello( in name varchar := 'World' ) returns varchar { return 'Hello ' || name || '!'; };grant execute on hello to dba; -- Along with one Unit Test create procedure hello_vunittest(){ vunit_assert_equals( hello('John'), 'Hello John!' ); };grant execute on hello_vunittest to dba; -- And run all tests select vunit_run(); [Less]
Created about 1 month ago.