rdf

TwitterFacebook
Get flash to fully experience Pearltrees
http://www.w3.org/TR/1998/WD-rdf-schema/ Copyright ©1998,1999 W3C ( MIT , INRIA , Keio ) , All Rights Reserved. W3C liability, trademark , document use and software licensing rules apply. Status of this document This document is a Proposed Recommendation of the World Wide Web Consortium .

Resource Description Framework (RDF) Schema Specification

Spécification du modèle et la syntaxe du cadre de description des ressources (Resource Description Framework ou RDF)

REC-rdf-syntax-19990222 Droit de copie © 1997,1998,1999 W3C ( MIT , INRIA , Keio ), Tous droits réservés. Les règles de responsabilité , de marque déposée , d' utilisation du document et de license sur les logiciels du W3C s'appliquent. Statut de ce document Ce document a été examiné par les membres du W3C et autres groupes intéressés et a été approuvés par le directeur comme une recommandation du W3C . C'est un document stable et il peut être utilisé comme un matériel de référence ou cité comme une référence normative dans d'autres documents. http://www.la-grange.net/w3c/REC-rdf-syntax/
Pyrple parses RDF/XML, N3, and N-Triples. It has in-memory storage with API-level querying, experimental marshalling, many utilities, and is small and minimally interdependent. It can do graph isomorphism testing, rule application, etc. $ wget http://infomesh.net/pyrple/pyrple-2004-06-06.tar.gz $ tar -zxvf pyrple-2004-06-06.tar.gz $ su -c mv pyrple-2004-06-06 /usr/lib/python2.3/site-packages/pyrple http://infomesh.net/pyrple/

pyrple - An RDF API in Python

http://yergler.net/talks/pythonrdf/

Using RDF with Python

RDF has an abstract syntax that reflects a simple graph-based data model, and formal semantics with a rigorously defined notion of entailment providing a basis for well founded deductions in RDF data. >>> store = TripleStore() >>> store.parse ( inputsource ) >>> rdf_subjects = store.subjects() >>> store.predicates(subject="http://web.resource.org/cc/License") from rdflib.TripleStore import TripleStore store = TripleStore() store.parse([URI]) store.prefix_mapping([prefix], [URI]) Thing = ThingFactory(store)

RDF - Semantic Web Standards

http://www.w3.org/RDF/ RDF is a standard model for data interchange on the Web. RDF has features that facilitate data merging even if the underlying schemas differ, and it specifically supports the evolution of schemas over time without requiring all the data consumers to be changed. RDF extends the linking structure of the Web to use URIs to name the relationship between things as well as the two ends of the link (this is usually referred to as a “triple”). Using this simple model, it allows structured and semi-structured data to be mixed, exposed, and shared across different applications. This linking structure forms a directed, labeled graph, where the edges represent the named link between two resources, represented by the graph nodes. This graph view is the easiest possible mental model for RDF and is often used in easy-to-understand visual explanations.
Resource Description Framework ( RDF ) est un modèle de graphe destiné à décrire de façon formelle les ressources Web et leurs métadonnées , de façon à permettre le traitement automatique de telles descriptions. Développé par le W3C , RDF est le langage de base du Web sémantique . L'une des syntaxes (ou sérialisations ) de ce langage est RDF/XML. D'autres sérialisations de RDF sont apparues ensuite, cherchant à rendre la lecture plus compréhensible ; c'est le cas par exemple de Notation3 (ou N3). En annotant des documents non structurés et en servant d'interface pour des applications et des documents structurés (pe. bases de données, GED, etc.) RDF permet une certaine interopérabilité entre des applications échangeant de l'information non formalisée et non structurée sur le Web. http://fr.wikipedia.org/wiki/Resource_Description_Framework

Resource Description Framework - Wikipédia