
    i                        U d Z ddlZddlZddlmZ  ej                  d      ZdZed   Zee	d<   dZ
g d	Z ej                  e      Z	 ddlZ eed
      stej"                  h eej$                  d      rUej$                  j'                         r;ej)                  ej*                         ej-                   ej.                                [[dZ	 dZ	 ddlmZm Z m!Z! ddl"m#Z#m$Z$m%Z%m&Z&m'Z'm(Z(m)Z)m*Z*m+Z+m,Z,m-Z-m.Z.m/Z/m0Z0m1Z1m2Z2m3Z3m4Z4m5Z5m6Z6m7Z7m8Z8m9Z9m:Z:m;Z;m<Z<m=Z= ddl>m?Z?m@Z@mAZAmBZBmCZCmDZD ddlEmFZFmGZGmHZH ddlI y# e$ r ddlZ ej4                  de       [Y w xY w)a(  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("http://meetings.example.com/cal#m1"),
    ...   URIRef("http://www.example.org/meeting_organization#homePage"),
    ...   URIRef("http://meetings.example.com/m1/hp")),
    ...  (URIRef("http://www.example.org/people#fred"),
    ...   URIRef("http://www.example.org/meeting_organization#attending"),
    ...   URIRef("http://meetings.example.com/cal#m1")),
    ...  (URIRef("http://www.example.org/people#fred"),
    ...   URIRef("http://www.example.org/personal_details#GivenName"),
    ...   Literal("Fred")),
    ...  (URIRef("http://www.example.org/people#fred"),
    ...   URIRef("http://www.example.org/personal_details#hasEmail"),
    ...   URIRef("mailto:fred@example.com"))
    ... ]
    True

    N)metadatardflibzrestructuredtext enVersion__version__z
2025-09-19)(URIRefBNodeIdentifiedNodeLiteralNodeVariable	NamespaceDatasetGraphConjunctiveGraphBRICKCSVWDCDCATDCMITYPEDCTERMSDOAPFOAFODRL2ORGOWLPROFPROVQBRDFRDFSSDOSHSKOSSOSASSNTIMEVANNVOIDXMLNSXSDutilpluginqueryNORMALIZE_LITERALS__file__isattyz__main__ already importedTF)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   )r   r	   r
   r   r   r   )r,   r-   r+   )*)J__doc__loggingsys	importlibr   _DISTRIBUTION_METADATA__docformat__r   str__annotations____date____all__	getLogger__name__logger__main__hasattrstdoutstderrr0   setLevelINFO
addHandlerStreamHandlerImportErrorwarningswarnImportWarningr.   DAWG_LITERAL_COLLATIONrdflib.graphr   r   r   rdflib.namespacer   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   rdflib.termr   r	   r
   r   r   r   r   r,   r-   r+   rdflib.container     >C:\Projects\mas-dev\.venv\Lib\site-packages\rdflib/__init__.py<module>rS      sS  +Z  
 ***84 %))4S 4)V 
		8	$ Hj)JJ"CJJ)JJ 	%/'//12   *  * : 9       : O N & & o  HMM-}=s   	BD6 6EE