3
d                 @   sD  d Z dZdZdZdddddd	d
dddddddddddddddddddddd d!d"gZd#d$lZejd6ksltd'd#d$lZej	e
Zd(ZyLd#d$lZeed) rejd$krejj rd*Zejej ejej  [W n* ek
r   d#d$lZejd+e [Y nX erejd,e  nejd,e  [[d#d$lZyejd- W n, ek
rd   d#d$lZejd.e [Y nX [d*Zd(Z d#d/l!m"Z"m#Z#m$Z$m%Z% d#d0l&m'Z' d#d1l(m)Z)m*Z*m+Z+ d#d2l&m,Z,m-Z-m.Z.m/Z/m0Z0m1Z1m2Z2m3Z3m4Z4m5Z5m6Z6m7Z7m8Z8m9Z9m:Z:m;Z;m<Z<m=Z=m>Z>m?Z?m@Z@mAZA d#d3lBmCZC d#d4lBmDZD eCs*teDs4td#d5lBmEZE d$S )7a4  A pure Python package providing the core RDF constructs.

The packages is intended to provide the core RDF types and interfaces
for working with RDF. The package defines a plugin interface for
parsers, stores, and serializers that other packages can use to
implement parsers, stores, and serializers that will plug into the
rdflib package.

The primary interface `rdflib` exposes to work with RDF is
`rdflib.graph.Graph`.

A tiny example:

    >>> from rdflib import Graph, URIRef, Literal

    >>> g = Graph()
    >>> result = g.parse("http://www.w3.org/2000/10/swap/test/meet/blue.rdf")

    >>> print("graph has %s statements." % len(g))
    graph has 4 statements.
    >>>
    >>> for s, p, o in g:
    ...     if (s, p, o) not in g:
    ...         raise Exception("It better be!")

    >>> s = g.serialize(format='nt')
    >>>
    >>> sorted(g) == [
    ...  (URIRef(u'http://meetings.example.com/cal#m1'),
    ...   URIRef(u'http://www.example.org/meeting_organization#homePage'),
    ...   URIRef(u'http://meetings.example.com/m1/hp')),
    ...  (URIRef(u'http://www.example.org/people#fred'),
    ...   URIRef(u'http://www.example.org/meeting_organization#attending'),
    ...   URIRef(u'http://meetings.example.com/cal#m1')),
    ...  (URIRef(u'http://www.example.org/people#fred'),
    ...   URIRef(u'http://www.example.org/personal_details#GivenName'),
    ...   Literal(u'Fred')),
    ...  (URIRef(u'http://www.example.org/people#fred'),
    ...   URIRef(u'http://www.example.org/personal_details#hasEmail'),
    ...   URIRef(u'mailto:fred@example.com'))
    ... ]
    True

zrestructuredtext enz5.0.0z
2020-04-18URIRefBNodeLiteralVariable	NamespaceDatasetGraphConjunctiveGraphCSVWDCDCATDCTERMSDOAPFOAFODRL2ORGOWLPROFPROVRDFRDFSSDOSHSKOSSOSASSNTIMEVOIDXMLNSXSDutil    N      z$rdflib requires Python 2.7 or higherF__file__Tz__main__ already importedzRDFLib Version: %si aP  You are using a narrow Python build!
This means that your Python does not properly support chars > 16bit.
On your system chars like c=u"\U0010FFFF" will have a len(c)==2.
As this can cause hard to debug problems with string processing
(slicing, regexp, ...) later on, we strongly advise to use a wide
Python build in production systems.)r   r   r   r   )r   )r   r   r   )r	   r
   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   )plugin)query)r   )r!   r"   r    )F__doc__Z__docformat____version____date____all__sysversion_infoAssertionErrorlogging	getLogger__name__loggerZ_interactive_mode__main__hasattrstdoutstderrisattysetLevelINFO
addHandlerStreamHandlerImportErrorwarningswarnImportWarninginfodebugsixunichr
ValueErrorZNORMALIZE_LITERALSZDAWG_LITERAL_COLLATIONZrdflib.termr   r   r   r   Zrdflib.namespacer   Zrdflib.graphr   r   r   r	   r
   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   Zrdflibr$   r%   r    rC   rC   1/tmp/pip-build-7vycvbft/rdflib/rdflib/__init__.py<module>,   s   
 `

