This file is indexed.

/usr/share/doc/python-rdflib-doc/html/_sources/index.txt is in python-rdflib-doc 4.1.2-3.

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
.. rdflib documentation documentation master file
   
================
rdflib |release|
================

RDFLib is a pure Python package work working with `RDF <http://www.w3.org/RDF/>`_. RDFLib contains most things you need to work with RDF, including: 

* parsers and serializers for RDF/XML, N3, NTriples, N-Quads, Turtle, TriX, RDFa and Microdata.

* a Graph interface which can be backed by any one of a number of Store implementations. 

* store implementations for in memory storage and persistent storage on top of the Berkeley DB. 

* a SPARQL 1.1 implementation - supporting SPARQL 1.1 Queries and Update statements. 

Getting started
---------------

If you never used RDFLib, click through these

.. toctree::
   :maxdepth: 1

   gettingstarted
   intro_to_parsing
   intro_to_creating_rdf
   intro_to_graphs
   intro_to_sparql

   utilities

   RDFLib examples <apidocs/examples>

In depth
--------

If you already worked with RDF and need to know the peculiarities of RDFLib, these are for you. 

.. toctree::
   :maxdepth: 1

   rdf_terms
   namespaces_and_bindings
   persistence
   merging

   upgrade3to4
   upgrade2to3

   faq
   

Reference
---------

The nitty-gritty details of everything.

.. toctree:: 
   :maxdepth: 2
			  
   plugins

.. toctree::
   :maxdepth: 1

   apidocs/modules

* :ref:`genindex`
* :ref:`modindex`




For developers
--------------

.. toctree::
   :maxdepth: 1

   developers
   docs
   univrdfstore
   persisting_n3_terms




Indices and tables
------------------

* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`

.. glossary::

   functional properties 
      
        A functional property is a property that can
        have only one (unique) value y for each instance x, i.e. there
        cannot be two distinct values y1 and y2 such that the pairs
        (x,y1) and (x,y2) are both instances of this 
		property. -- http://www.w3.org/TR/owl-ref/#FunctionalProperty-def

   graph
        An RDF graph is a set of RDF triples. The set of nodes of an RDF graph
        is the set of subjects and objects of triples in the graph.
    
   named graph
        Named Graphs is the idea that having multiple RDF graphs in a single
        document/repository and naming them with URIs provides useful
        additional functionality. -- http://www.w3.org/2004/03/trix/

   transitivity 
        A property is transitive: 
            
            if whenever an element ``a`` is related to an element
            ``b``, and ``b`` is in turn related to an element ``c``,
            then ``a`` is also related to ``c``.  --
            http://en.wikipedia.org/wiki/Transitive_relation
		
        Standard examples include ``rdfs:subClassOf`` or greater-than