/usr/share/doc/python-rdflib-doc/html/upgrade2to3.html is in python-rdflib-doc 4.2.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Upgrading from RDFLib version 2.X to 3.X — rdflib 4.2.1 documentation</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
<link rel="stylesheet" href="_static/rtd.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '4.2.1',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="_static/searchtools.js"></script>
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="top" title="rdflib 4.2.1 documentation" href="index.html" />
<link rel="next" title="Frequently Asked Questions about using RDFLib" href="faq.html" />
<link rel="prev" title="Upgrading from RDFLib version 3.X to 4.X" href="upgrade3to4.html" />
</head>
<body role="document">
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="faq.html" title="Frequently Asked Questions about using RDFLib"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="upgrade3to4.html" title="Upgrading from RDFLib version 3.X to 4.X"
accesskey="P">previous</a> |</li>
<li class="nav-item nav-item-0"><a href="index.html">rdflib 4.2.1 documentation</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="upgrading-from-rdflib-version-2-x-to-3-x">
<h1>Upgrading from RDFLib version 2.X to 3.X<a class="headerlink" href="#upgrading-from-rdflib-version-2-x-to-3-x" title="Permalink to this headline">¶</a></h1>
<div class="section" id="introduction">
<h2>Introduction<a class="headerlink" href="#introduction" title="Permalink to this headline">¶</a></h2>
<p>This page details the changes required to upgrade from RDFLib 2.X to 3.X.</p>
<p>Some older Linux distributions still ship 2.4.X. If needed, you can also install 2.4 using easy_install/setup tools.</p>
<p>Version 3.0 reorganised some packages, and moved non-core parts of rdflib to the <a class="reference external" href="http://code.google.com/p/rdfextras/">rdfextras project</a></p>
</div>
<div class="section" id="features-moved-to-rdfextras">
<h2>Features moved to rdfextras<a class="headerlink" href="#features-moved-to-rdfextras" title="Permalink to this headline">¶</a></h2>
<blockquote>
<div><ul class="simple">
<li>SPARQL Support is now in rdfextras / rdflib-sparql</li>
<li>The RDF Commandline tools are now in rdfextras</li>
</ul>
</div></blockquote>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p>If you install packages with just distutils - you will need to register the sparql plugins manually - we strongly recommend installing with setuptools or distribute!
To register the plugins add this somewhere in your program:</p>
<div class="last highlight-python"><div class="highlight"><pre><span></span><span class="n">rdflib</span><span class="o">.</span><span class="n">plugin</span><span class="o">.</span><span class="n">register</span><span class="p">(</span><span class="s1">'sparql'</span><span class="p">,</span> <span class="n">rdflib</span><span class="o">.</span><span class="n">query</span><span class="o">.</span><span class="n">Processor</span><span class="p">,</span>
<span class="s1">'rdfextras.sparql.processor'</span><span class="p">,</span> <span class="s1">'Processor'</span><span class="p">)</span>
<span class="n">rdflib</span><span class="o">.</span><span class="n">plugin</span><span class="o">.</span><span class="n">register</span><span class="p">(</span><span class="s1">'sparql'</span><span class="p">,</span> <span class="n">rdflib</span><span class="o">.</span><span class="n">query</span><span class="o">.</span><span class="n">Result</span><span class="p">,</span>
<span class="s1">'rdfextras.sparql.query'</span><span class="p">,</span> <span class="s1">'SPARQLQueryResult'</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="section" id="unstable-features-that-were-removed">
<h2>Unstable features that were removed<a class="headerlink" href="#unstable-features-that-were-removed" title="Permalink to this headline">¶</a></h2>
<blockquote>
<div>The RDBMS back stores (MySQL/PostgreSQL) were removed, but are in the process of being moved to rdfextras. The Redland, SQLite and ZODB stores were all removed.</div></blockquote>
</div>
<div class="section" id="packages-classes-that-were-renamed">
<h2>Packages/Classes that were renamed<a class="headerlink" href="#packages-classes-that-were-renamed" title="Permalink to this headline">¶</a></h2>
<p>Previously all packages and classes had colliding names, i.e. both package and the class was called “Graph”:</p>
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">rdflib.Graph</span> <span class="k">import</span> <span class="n">Graph</span><span class="p">,</span> <span class="n">ConjunctiveGraph</span>
</pre></div>
</div>
<p>Now all packages are lower-case, i.e:</p>
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">rdflib.graph</span> <span class="k">import</span> <span class="n">Graph</span><span class="p">,</span> <span class="n">ConjunctiveGraph</span>
</pre></div>
</div>
<p>Most classes you need are available from the top level rdflib package:</p>
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">rdflib</span> <span class="k">import</span> <span class="n">Graph</span><span class="p">,</span> <span class="n">URIRef</span><span class="p">,</span> <span class="n">BNode</span><span class="p">,</span> <span class="n">Literal</span>
</pre></div>
</div>
<p>Namespace classes for RDF, RDFS, OWL are now directly in the rdflib package, i.e. in 2.4:</p>
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">rdflib.RDF</span> <span class="k">import</span> <span class="n">RDFNS</span> <span class="k">as</span> <span class="n">RDF</span>
</pre></div>
</div>
<p>in 3.0:</p>
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="kn">from</span> <span class="nn">rdflib</span> <span class="k">import</span> <span class="n">RDF</span>
</pre></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<p class="logo"><a href="index.html">
<img class="logo" src="_static/logo.svg" alt="Logo"/>
</a></p>
<h3><a href="index.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">Upgrading from RDFLib version 2.X to 3.X</a><ul>
<li><a class="reference internal" href="#introduction">Introduction</a></li>
<li><a class="reference internal" href="#features-moved-to-rdfextras">Features moved to rdfextras</a></li>
<li><a class="reference internal" href="#unstable-features-that-were-removed">Unstable features that were removed</a></li>
<li><a class="reference internal" href="#packages-classes-that-were-renamed">Packages/Classes that were renamed</a></li>
</ul>
</li>
</ul>
<h4>Previous topic</h4>
<p class="topless"><a href="upgrade3to4.html"
title="previous chapter">Upgrading from RDFLib version 3.X to 4.X</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="faq.html"
title="next chapter">Frequently Asked Questions about using RDFLib</a></p>
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="_sources/upgrade2to3.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<div><input type="text" name="q" /></div>
<div><input type="submit" value="Go" /></div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="faq.html" title="Frequently Asked Questions about using RDFLib"
>next</a> |</li>
<li class="right" >
<a href="upgrade3to4.html" title="Upgrading from RDFLib version 3.X to 4.X"
>previous</a> |</li>
<li class="nav-item nav-item-0"><a href="index.html">rdflib 4.2.1 documentation</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright 2016 - 2013, RDFLib Team.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.4.9.
<br />Theme based on <a href="http://readthedocs.org/">Read The Docs</a>
</div>
</body>
</html>
|