Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python311-rdflib-6.1.1-slfo.1.1.23 RPM for noarch

From OpenSuSE Leap 16.0 for noarch

Name: python311-rdflib Distribution: SUSE Linux Framework One
Version: 6.1.1 Vendor: SUSE LLC <https://www.suse.com/>
Release: slfo.1.1.23 Build date: Tue Feb 8 00:38:10 2022
Group: Unspecified Build host: reproducible
Size: 4337896 Source RPM: python-rdflib-6.1.1-slfo.1.1.23.src.rpm
Packager: https://www.suse.com/
Url: http://rdflib.net/
Summary: A Python library for working with RDF
RDFLib is a Python library for working with RDF, a simple yet powerful
language for representing information. The library contains an RDF/XML
parser/serializer that conforms to the RDF/XML Syntax Specification (Revised).
The library also contains both in-memory and persistent Graph backends.

Provides

Requires

License

BSD-3-Clause

Changelog

* Mon Feb 07 2022 steven.kowalik@suse.com
  - Update to 6.1.1:
    * add support for Python 3.10
    * updates the test suite to pytest (from nose)
    * tidies up a lot of continuous integration
    * gets more tests tested, not skipped
    * implements lots of mypy tests
    * updates several parsers and serializers
    * supports the new HexTuples format!
    * drop support for Python 2 and Python 3 < 3.7.
    * improved testing with mock SPARQL stores
  - Drop unneeded BuildRequires on python3-2to3
* Mon Jan 11 2021 adam@mizerski.pl
  - removed unneeded 'Requires' dependencies
* Tue May 19 2020 pgajdos@suse.com
  - %python3_only -> %python_alternative
* Sun Apr 19 2020 rfrohl@suse.com
  -  Update to version 5.0.0
    * General Bugs Fixed:
    - n3 parser exponent syntax of floats with leading dot
    - Change is comparison to == for tuple
    - Added _parseBoolean function to enforce correct Lexical-to-value mapping
    * SPARQL Fixes:
    - CONSTRUCT resolve with initBindings fixes
* Sun Apr 05 2020 rfrohl@suse.com
  - Update to version 5.0.0rc1
    * General Bugs Fixed:
    - NTriples fails to parse URIs with only a scheme
    - Cannot clone on windows - Remove colons from test result files.
    - Add requirement for requests to setup.py
    - fixed URIRef including native unicode characters
    - DCTERMS.format not working
    - infixowl.manchesterSyntax do not encode strings
    - Fix blank node label to not contain '_:' during parsing
    - rename new SPARQLWrapper to SPARQLConnector
    - Unquote and Uriquote Literal Datatype.
    - Parsing nquads
    - ntriples spec allows for upper-cased lang tag
    - Adds escaped single quote to literal parser
    - N3 parse error on single quote within single quotes
    - RGDA1 graph canonicalization sometimes still collapses distinct BNodes
    - Accept header should use a q parameter
    - Incompatibility with Python3: unichr
    - namespace.py include colon in ALLOWED_NAME_CHARS
    - namespace.py fix compute_qname missing namespaces
    - RDFa parsing Error! __init__() got an unexpected keyword argument 'encoding'
    - Bugfix: term.Literal.__add__
    - Microdata to rdf second edition bak
    * Enhanced Features:
    - Register additional serializer plugins for SPARQL mime types.
    - Allows RDF terms introduced by JSON-LD 1.1
    - make SPARQLConnector work with DBpedia
    - ClosedNamespace returns right exception for way of access
    - Not adding all namespaces for n3 serializer
    - Adds basic support of xsd:duration
    - Add possibility to set authority and basepath to skolemize graph
    - Change notation3 list realization to non-recursive function.
    - Suppress warning for not using custom encoding.
    - Add support to parsing large xml inputs
    - improve hash efficiency by directly using str/unicode hash
    - Added the csvw prefix to the RDFa initial context.
    - syncing changes from pyMicrodata
    - Microdata parser: updated the parser to the latest version of the microdata->rdf note
    - Literal.toPython() support for xsd:hexBinary
    * SPARQL Fixes:
    - Total order patch patch
    - use <<= instead of deprecated <<
    - RDF Literal "1"^^xsd:boolean should not coerce to True
    - Makes NOW() return an UTC date
    - NOW() SPARQL should return an xsd:dateTime with a timezone
    - fix property paths bug
    - MulPath: correct behaviour of n3()
    - Literal total ordering
    - Remove SPARQLWrapper dependency
    - made UNION faster by not preventing duplicates
    - added a hook to add custom functions to SPARQL
    - Use <<= instead of deprecated << in SPARQL parser
    - Custom FILTER function for SPARQL engine
* Mon Oct 14 2019 mcepl@suse.com
  - Replace %fdupes -s with plain %fdupes; hardlinks are better.
* Tue Dec 04 2018 mcepl@suse.com
  - Remove superfluous devel dependency for noarch package
* Wed May 03 2017 toddrme2178@gmail.com
  - Update to version 4.2.2
    + Bug fixes:
    * SPARQL bugs fixed:
    * Fix for filters in sub-queries
    * Fixed bind, initBindings and filter problems
    * Fixed unexpected None value in SPARQL-update
    * Fix sparql, group by and count of null values with `optional`
    * Fixed sparql sub-query and aggregation bugs
    * Fixed parsing Complex BGPs as triples
    * Fixed DISTINCT being ignored inside aggregate functions
    * Fix unicode encoding errors in sparql processor
    * Fixed SPARQL select nothing no longer returning a `None` row
    * Fixed aggregate operators COUNT and SAMPLE to ignore unbound / NULL values
    * Fix sparql relative uris
    * SPARQL can now compare xsd:date type as well, fixes #532
    * fix sparql path order on python3: "TypeError: unorderable types: SequencePath() < SequencePath()""
    * SPARQL parser now robust to spurious semicolon
    * Let paths be comparable against all nodes even in py3 (preparedQuery error)
    * Made behavior of `initN` in `update` and `query` more consistent
    * SparqlStore:
    * SparqlStore now closes underlying urllib response body
    * SparqlStore injectPrefixes only modifies query if prefixes present and if adds a newline in between
    * Fixes and tests for AuditableStore
    * Trig bugs fixed:
    * trig export of multiple graphs assigns wrong prefixes to prefixedNames
    * Trig serialiser writing empty named graph name for default graph
    * Trig parser can creating multiple contexts for the default graph
    * Trig serialisation handling prefixes incorrectly
    * Fixed Nquads parser handling of triples in default graph
    * Fixed TypeError in Turtle serializer (unorderable types: DocumentFragment() > DocumentFragment())
    * Fixed serialization and parsing of inf/nan
    * Fixed RDFa parser from failing on time elements with child nodes
    * Fix double reduction of \\ escapes in from_n3
    * Fixed handling of xsd:base64Binary
    * Fixed Collection.__setitem__ broken
    * Fix ImportError when __main__ already loaded
    * Fixed broken top_level.txt file in distribution
    + Enhancements:
    * Added support for Python 3.5+
    * More aliases for common formats (nt, turtle)
    * Improved RDF1.1 ntriples support
    * Dependencies updated and improved compatibility with pyparsing, html5lib, SPARQLWrapper and elementtree
    * Improved prefix for SPARQL namespace in XML serialization
    * Performance improvements:
    * SPARQL Aggregation functions don't build up memory for each row
    * Collections now support += (__iadd__), fixes slow creation of large lists
    * SPARQL Optimisation to expand BGPs in a smarter way
    * SPARQLStore improvements
    * improved SPARQLStore BNode customizability
    * Adding the option of using POST for long queries in SPARQLStore
    * Exposed the timeout of SPARQLWrapper
    * SPARQL prepared query now carries the original (unparsed) parameters
    * added .n3 methods for path objects
    * Added support for xsd:gYear and xsd:gYearMonth
    * Allow duplicates in rdf:List
    * Improved slicing of Resource objects
    + Cleanups:
    * cleanup: SPARQL Prologue and Query new style classes
    * Reduce amount of warnings, especially closing opened file pointers
    * Improved ntriples parsing exceptions to actually tell you what's wrong
    * remove ancient and broken 2.3 support code.
    * Logger output improved
    * properly cite RGDA1
    * Avoid class reference to imported function
    * Use find_packages for package discovery.
    * Prepared ClosedNamespace (and _RDFNamespace) to inherit from Namespace (5.0.0)
    * Avoid verbose build logging
    * (ultra petty) Remove an unused import
    + Testing improvements:
    * updating deprecated testing syntax
    * make test 375 more portable (use sys.executable rather than python)
    * Removed outdated, skipped test for #130 that depended on content from the internet
    * enable all warnings during travis nosetests
    * travis updates
    * travis also builds release branches
    + Doc improvements:
    * Update list of builtin serialisers in docstring
    * Update reference to "Emulating container types"
    * docs: clarify the use of an identifier when persisting a triplestore
    * DOC: unamed -> unnamed, typos
  - Implement single-spec version
  - Fix source URL.
* Mon Sep 12 2016 aplanas@suse.com
  - Break cycle removing BuildRequires from python-SPARQLWrapper
* Mon Sep 12 2016 aplanas@suse.com
  - update to version 4.2.1:
    * Minor enhancements:
      + Added a Networkx connector #471, #507
      + Added a graph_tool connector #473
      + Added a graphs method to the Dataset object #504, #495
      + Batch commits for SPARQLUpdateStore #486
    * Bug fixes:
      + Fixed bnode collision bug #506, #496, #494
      + fix util.from_n3() parsing Literals with datatypes and Namespace
      support #503, #502
      + make Identifier.__hash__ stable wrt. multi processes #501, #500
      + fix handling URLInputSource without content-type #499, #498
      + no relative import in algebra when run as a script #497
      + Duplicate option in armstrong theme.conf removed #491
      + Variable.__repr__ returns a python representation string, not n3 #488
      + fixed broken example #482
      + trig output fixes #480
      + set PYTHONPATH to make rdfpipe tests use the right rdflib
      version #477
      + fix RDF/XML problem with unqualified use of rdf:about #470, #468
      + AuditableStore improvements #469, #463
      + added asserts for graph.set([s,p,o]) so s and p aren't None #467
      + threading.RLock instances are context managers #465
      + SPARQLStore does not transform Literal('') into Literal('None')
      anymore #459, #457
      + slight performance increase for graph.all_nodes() #458
    * Testing improvements:
      + travis: migrate to docker container infrastructure #508
      + test for narrow python builds (chars > 0xFFFF) (related to #453,
      [#454] ) #456, #509
      + dropped testing py3.2 #448
      + Running a local fuseki server on travis and making it failsafe
      [#476], #475, #474, #466, #460
      + exclude def main(): functions from test coverage analysis #472
* Wed Jul 01 2015 toddrme2178@gmail.com
  - Split documentation into doc subpackage
* Tue May 12 2015 benoit.monin@gmx.fr
  - update to version 4.2.0:
    * Supporting N-Triples 1.1 syntax using UTF-8 encoding #447,
      [#449], #400
    * Graph comparison now really works using RGDA1 (RDF Graph Digest
      Algorithm 1) #441 #385
    * More graceful degradation than simple crashing for unicode
      chars > 0xFFFF on narrow python builds
    * URLInputSource now supports json-ld #425
    * SPARQLStore is now graph aware #401, #402
    * SPARQLStore now uses SPARQLWrapper for updates #397
    * Certain logging output is immediately shown in interactive mode
      [#414]
    * Python 3.4 fully supported #418
    * Fixed double invocation of 2to3 #437
    * PyRDFa parser missing brackets #434
    * Correctly handle \uXXXX and \UXXXXXXXX escapes in n3 files #426
    * Logging cleanups and keeping it on stderr #420 #414 #413
    * n3: allow @base URI to have a trailing '#' #407 #379
    * microdata: add file:// to base if it's a filename so rdflib can
      parse its own output #406 #403
    * TSV Results parse skips empty bindings in result #390
    * fixed accidental test run due to name #389
    * Bad boolean list serialization to Turtle & fixed ambiguity
      between Literal(False) and None #387 #382
    * Current version number & PyPI link in README.md #383
  - remove *.pyc deletion: fixed upstream
  - remove unwanted shebang in rdflib
  - fix update-alternatives
  - remove end-of-line encoding fix: fixed upstream
* Sat Nov 08 2014 ledest@gmail.com
  - fix bashisms in pre script
* Thu Sep 11 2014 toddrme2178@gmail.com
  - Update to 4.1.2
    * This is a bug-fix release.
    * Fixed unicode/str bug in py3 for rdfpipe
      [#375](https://github.com/RDFLib/rdflib/issues/375)
  - Update to 4.1.1
    * This is a bug-fix release.
    * This will be the last RDFLib release to support python 2.5.
    * The RDF/XML Parser was made stricter, now raises exceptions for
      illegal repeated node-elements.
      [#363](https://github.com/RDFLib/rdflib/issues/363)
    * The SPARQLUpdateStore now supports non-ascii unicode in update
      statements
      [#356](https://github.com/RDFLib/rdflib/issues/356)
    * Fixed a bug in the NTriple/NQuad parser wrt. to unicode escape sequences
      [#352](https://github.com/RDFLib/rdflib/issues/352)
    * HTML5Lib is no longer pinned to 0.95
      [#355](https://github.com/RDFLib/rdflib/issues/360)
    * RDF/XML Serializer now uses parseType=Literal for well-formed XML literals
    * A bug in the manchester OWL syntax was fixed
      [#355](https://github.com/RDFLib/rdflib/issues/355)
  - Update to 4.1
    * This is a new minor version RDFLib, which includes a handful of new features:
    * A TriG parser was added (we already had a serializer) - it is
      up-to-date wrt. to the newest spec from: http://www.w3.org/TR/trig/
    * The Turtle parser was made up to date wrt. to the latest Turtle spec.
    * Many more tests have been added - RDFLib now has over 2000
      (passing!) tests. This is mainly thanks to the NT, Turtle, TriG,
      NQuads and SPARQL test-suites from W3C. This also included many
      fixes to the nt and nquad parsers.
    * ```ConjunctiveGraph``` and ```Dataset``` now support directly adding/removing
      quads with ```add/addN/remove``` methods.
    * ```rdfpipe``` command now supports datasets, and reading/writing context
      sensitive formats.
    * Optional graph-tracking was added to the Store interface, allowing
      empty graphs to be tracked for Datasets. The DataSet class also saw
      a general clean-up, see: [#309](https://github.com/RDFLib/rdflib/pull/309)
    * After long deprecation, ```BackwardCompatibleGraph``` was removed.
    * Minor enhancements/bugs fixed:
    * Many code samples in the documentation were fixed thanks to @PuckCh
    * The new ```IOMemory``` store was optimised a bit
    * ```SPARQL(Update)Store``` has been made more generic.
    * MD5 sums were never reinitialized in ```rdflib.compare```
    * Correct default value for empty prefix in N3
      [#312](https://github.com/RDFLib/rdflib/issues/312)
    * Fixed tests when running in a non UTF-8 locale
      [#344](https://github.com/RDFLib/rdflib/issues/344)
    * Prefix in the original turtle have an impact on SPARQL query
      resolution
      [#313](https://github.com/RDFLib/rdflib/issues/313)
    * Duplicate BNode IDs from N3 Parser
      [#305](https://github.com/RDFLib/rdflib/issues/305)
    * Use QNames for TriG graph names
      [#330](https://github.com/RDFLib/rdflib/issues/330)
    * \uXXXX escapes in Turtle/N3 were fixed
      [#335](https://github.com/RDFLib/rdflib/issues/335)
    * A way to limit the number of triples retrieved from the
      ```SPARQLStore``` was added
      [#346](https://github.com/RDFLib/rdflib/pull/346)
    * Dots in localnames in Turtle
      [#345](https://github.com/RDFLib/rdflib/issues/345)
      [#336](https://github.com/RDFLib/rdflib/issues/336)
    * ```BNode``` as Graph's public ID
      [#300](https://github.com/RDFLib/rdflib/issues/300)
    * Introduced ordering of ```QuotedGraphs```
      [#291](https://github.com/RDFLib/rdflib/issues/291)
* Fri Dec 06 2013 toddrme2178@gmail.com
  - Update to 4.0.1
    * Bugfixes
  - Update to 4.0
    * The new SPARQL 1.1 engine (rdflib-sparql) has been included in the core distribution. SPARQL 1.1 queries and updates should work out of the box.
    * Several RDF 1.1 features are available:
    * A new DataSet class
    * XMLLiteral and HTMLLiterals
    * BNode (de)skolemization is supported through BNode.skolemize, URIRef.de_skolemize, Graph.skolemize and Graph.de_skolemize
    * Handled of Literal equality was split into lexical comparison (for normal == operator) and value space (using new Node.eq methods). This introduces some slight backwards incomaptible changes, but was necessary, as the old version had inconsisten hash and equality methods that could lead the literals not working correctly in dicts/sets. The new way is more in line with how SPARQL 1.1 works. For the full details, see:
    * Iterating over QueryResults will generate ResultRow objects, these allow access to variable bindings as attributes or as a dict. I.e.
    * "Slicing" of Graphs and Resources as syntactic sugar: (#271)
    * The SPARQLStore and SPARQLUpdateStore are now included in the RDFLib core
    * The documentation has been given a major overhaul, and examples for most features have been added.
  - Update to 3.4
    * This release introduced new parsers for structured data in HTML. In particular formats: hturtle, rdfa, mdata and an auto-detecting html format were added. Thanks to Ivan Herman for this!
    * This release includes a lot of admin maintentance - correct dependencies for different python versions, etc. Several py3 bugs were also fixed.
    * This release drops python 2.4 compatability - it was just getting too expensive for us to maintain. It should however be compatible with any cpython from 2.5 through 3.3.
    * node.md5_term is now deprecated, if you use it let us know.
  - Add additional dependencies
  - Implement update-alternatives
* Thu Jan 31 2013 saschpe@suse.de
  - Drop shipped bytecode files and recompile them
* Wed Jan 30 2013 saschpe@suse.de
  - Run testsuite everywhere
  - Macro cleanup
* Sun Jan 13 2013 p.drouand@gmail.com
  - Initial python3 support
* Sun Jan 13 2013 p.drouand@gmail.com
  - Remove the hidden file after documentation is build
* Mon Dec 03 2012 saschpe@suse.de
  - Disable testsuite on SLE_11_SP2 to fix build
* Tue Oct 16 2012 jfunk@funktronics.ca
  - Update to 3.2.3:
    * Fixes broken querying
      https://github.com/RDFLib/rdflib/issues/234
    * graph.transitiveClosure now works with loops
      https://github.com/RDFLib/rdflib/issues/206
  - Changes in 3.2.2:
    * Improved serialization/parsing roundtrip tests led to some fixes
      of obscure parser/serializer bugs. In particular complex string
      Literals in ntriples improved a lot.
    * The terms of a triple are now asserted to be RDFLib Node's in graph.add
      This should avoid getting strings and other things in the store.
      https://github.com/RDFLib/rdflib/issues/200
    * Added a specific TurtleParser that does not require the store to be
      non-formula aware.
      https://github.com/RDFLib/rdflib/issues/214
    * A trig-serializer was added, see:
      http://www4.wiwiss.fu-berlin.de/bizer/trig/
    * BNode generation was made thread-safe
      https://github.com/RDFLib/rdflib/issues/209
      (also fixed better by dzinxed)
    * Illegal BNode IDs removed from NT output:
      https://github.com/RDFLib/rdflib/issues/212
    * and more minor bug fixes that had no issues
* Mon Jun 11 2012 dimstar@opensuse.org
  - Add python-isodate Requires: rdflib imports it.
* Wed Jun 06 2012 jfunk@funktronics.ca
  - Require python-Sphinx instead of python-sphinx
  - Change Source to full URL
* Thu May 24 2012 jfunk@funktronics.ca
  - Run tests
  - Add missing requirements
  - Build documentation
* Sat Apr 28 2012 msuman@gnome.org
  - Update to version 3.2.1:
    + New setuptools entry points for query processors and results
    + Many bugfixes
* Tue Mar 13 2012 cfarrell@suse.com
  - license update: BSD-3-Clause
    SPDX format
* Wed Feb 15 2012 dimstar@opensuse.org
  - Update to version 3.2.0:
    + rdflib now works under python3
    + Unit tests were updated and cleaned up
    + Updated documentations
    + A new resource oriented API was added
    + Many bugfixes.
* Thu Sep 22 2011 saschpe@suse.de
  - Fixed SLE build by adding a %define python_sitelib
* Tue Sep 20 2011 saschpe@suse.de
  - Update to version 3.1.0:
    * Literal.__str__ does not behave like unicode
    * (RDFa Parser) Does not handle application/xhtml+xml
    * RDFa TC #117: Fragment identifiers stripped from BASE
    * Malformed literals produced when rdfa contains newlines
    * Namespaces beginning with _ are invalid
    * Turtle Files with a UTF-8 BOM fail to parse
    * ClosedNamespace.__str__ returns URIRef not str
    * IOMemory does not override open
    * Timestamps with microseconds *and* "Z" timezone are not parsed
    * DateTime literals with offsets fail to convert to Python
    * Timestamps with timezone information are not parsed
    * problem with unicode literals in rdflib.compare.graph_diff
    * Sleepycat Store broken with create=False
    * Would be useful if Graph.query could propagate kwargs to a
      plugin processor
    * Graph.connected exception when passed empty graph
    * Not compatible with Python 2.4
    * Support Python's set operations on Graph
    * NT output encoding to utf-8 broken as it goes through
      _xmlcharrefreplace
    * Store SPARQL Support
  - Fix non-executable bits rpmlint issue
* Thu Aug 12 2010 jmatejek@novell.com
  - version update to 3.0.0
  - cleaned up the spec a bit and added noarch

Files

/etc/alternatives/csv2rdf
/etc/alternatives/rdf2dot
/etc/alternatives/rdfgraphisomorphism
/etc/alternatives/rdfpipe
/etc/alternatives/rdfs2dot
/usr/bin/csv2rdf
/usr/bin/csv2rdf-3.11
/usr/bin/rdf2dot
/usr/bin/rdf2dot-3.11
/usr/bin/rdfgraphisomorphism
/usr/bin/rdfgraphisomorphism-3.11
/usr/bin/rdfpipe
/usr/bin/rdfpipe-3.11
/usr/bin/rdfs2dot
/usr/bin/rdfs2dot-3.11
/usr/lib/python3.11/site-packages/rdflib
/usr/lib/python3.11/site-packages/rdflib-6.1.1-py3.11.egg-info
/usr/lib/python3.11/site-packages/rdflib-6.1.1-py3.11.egg-info/PKG-INFO
/usr/lib/python3.11/site-packages/rdflib-6.1.1-py3.11.egg-info/SOURCES.txt
/usr/lib/python3.11/site-packages/rdflib-6.1.1-py3.11.egg-info/dependency_links.txt
/usr/lib/python3.11/site-packages/rdflib-6.1.1-py3.11.egg-info/entry_points.txt
/usr/lib/python3.11/site-packages/rdflib-6.1.1-py3.11.egg-info/requires.txt
/usr/lib/python3.11/site-packages/rdflib-6.1.1-py3.11.egg-info/top_level.txt
/usr/lib/python3.11/site-packages/rdflib/__init__.py
/usr/lib/python3.11/site-packages/rdflib/__pycache__
/usr/lib/python3.11/site-packages/rdflib/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/collection.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/collection.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/compare.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/compare.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/compat.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/compat.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/container.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/container.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/events.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/events.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/exceptions.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/exceptions.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/graph.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/graph.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/parser.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/parser.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/paths.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/paths.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/plugin.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/plugin.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/query.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/query.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/resource.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/resource.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/serializer.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/serializer.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/store.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/store.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/term.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/term.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/util.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/util.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/void.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/__pycache__/void.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/collection.py
/usr/lib/python3.11/site-packages/rdflib/compare.py
/usr/lib/python3.11/site-packages/rdflib/compat.py
/usr/lib/python3.11/site-packages/rdflib/container.py
/usr/lib/python3.11/site-packages/rdflib/events.py
/usr/lib/python3.11/site-packages/rdflib/exceptions.py
/usr/lib/python3.11/site-packages/rdflib/extras
/usr/lib/python3.11/site-packages/rdflib/extras/__init__.py
/usr/lib/python3.11/site-packages/rdflib/extras/__pycache__
/usr/lib/python3.11/site-packages/rdflib/extras/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/extras/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/extras/__pycache__/cmdlineutils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/extras/__pycache__/cmdlineutils.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/extras/__pycache__/describer.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/extras/__pycache__/describer.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/extras/__pycache__/external_graph_libs.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/extras/__pycache__/external_graph_libs.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/extras/__pycache__/infixowl.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/extras/__pycache__/infixowl.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/extras/cmdlineutils.py
/usr/lib/python3.11/site-packages/rdflib/extras/describer.py
/usr/lib/python3.11/site-packages/rdflib/extras/external_graph_libs.py
/usr/lib/python3.11/site-packages/rdflib/extras/infixowl.py
/usr/lib/python3.11/site-packages/rdflib/graph.py
/usr/lib/python3.11/site-packages/rdflib/namespace
/usr/lib/python3.11/site-packages/rdflib/namespace/_BRICK.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_CSVW.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_DC.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_DCAM.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_DCAT.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_DCMITYPE.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_DCTERMS.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_DOAP.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_FOAF.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_ODRL2.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_ORG.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_OWL.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_PROF.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_PROV.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_QB.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_RDF.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_RDFS.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_SDO.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_SH.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_SKOS.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_SOSA.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_SSN.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_TIME.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_VANN.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_VOID.py
/usr/lib/python3.11/site-packages/rdflib/namespace/_XSD.py
/usr/lib/python3.11/site-packages/rdflib/namespace/__init__.py
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_BRICK.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_BRICK.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_CSVW.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_CSVW.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_DC.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_DC.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_DCAM.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_DCAM.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_DCAT.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_DCAT.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_DCMITYPE.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_DCMITYPE.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_DCTERMS.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_DCTERMS.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_DOAP.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_DOAP.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_FOAF.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_FOAF.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_ODRL2.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_ODRL2.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_ORG.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_ORG.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_OWL.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_OWL.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_PROF.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_PROF.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_PROV.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_PROV.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_QB.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_QB.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_RDF.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_RDF.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_RDFS.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_RDFS.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_SDO.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_SDO.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_SH.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_SH.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_SKOS.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_SKOS.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_SOSA.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_SOSA.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_SSN.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_SSN.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_TIME.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_TIME.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_VANN.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_VANN.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_VOID.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_VOID.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_XSD.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/_XSD.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/namespace/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/parser.py
/usr/lib/python3.11/site-packages/rdflib/paths.py
/usr/lib/python3.11/site-packages/rdflib/plugin.py
/usr/lib/python3.11/site-packages/rdflib/plugins
/usr/lib/python3.11/site-packages/rdflib/plugins/__init__.py
/usr/lib/python3.11/site-packages/rdflib/plugins/__pycache__
/usr/lib/python3.11/site-packages/rdflib/plugins/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/RDFVOC.py
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__init__.py
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/RDFVOC.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/RDFVOC.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/hext.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/hext.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/jsonld.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/jsonld.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/notation3.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/notation3.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/nquads.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/nquads.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/ntriples.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/ntriples.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/rdfxml.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/rdfxml.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/trig.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/trig.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/trix.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/__pycache__/trix.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/hext.py
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/jsonld.py
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/notation3.py
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/nquads.py
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/ntriples.py
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/rdfxml.py
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/trig.py
/usr/lib/python3.11/site-packages/rdflib/plugins/parsers/trix.py
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__init__.py
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/hext.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/hext.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/jsonld.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/jsonld.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/longturtle.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/longturtle.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/n3.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/n3.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/nquads.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/nquads.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/nt.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/nt.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/rdfxml.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/rdfxml.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/trig.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/trig.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/trix.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/trix.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/turtle.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/turtle.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/xmlwriter.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/__pycache__/xmlwriter.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/hext.py
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/jsonld.py
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/longturtle.py
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/n3.py
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/nquads.py
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/nt.py
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/rdfxml.py
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/trig.py
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/trix.py
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/turtle.py
/usr/lib/python3.11/site-packages/rdflib/plugins/serializers/xmlwriter.py
/usr/lib/python3.11/site-packages/rdflib/plugins/shared
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/__init__.py
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/__pycache__
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld/__init__.py
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld/__pycache__
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld/__pycache__/context.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld/__pycache__/context.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld/__pycache__/errors.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld/__pycache__/errors.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld/__pycache__/keys.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld/__pycache__/keys.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld/__pycache__/util.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld/__pycache__/util.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld/context.py
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld/errors.py
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld/keys.py
/usr/lib/python3.11/site-packages/rdflib/plugins/shared/jsonld/util.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__init__.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/aggregates.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/aggregates.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/algebra.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/algebra.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/datatypes.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/datatypes.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/evaluate.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/evaluate.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/evalutils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/evalutils.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/operators.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/operators.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/parser.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/parser.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/parserutils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/parserutils.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/processor.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/processor.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/sparql.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/sparql.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/update.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/__pycache__/update.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/aggregates.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/algebra.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/datatypes.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/evaluate.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/evalutils.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/operators.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/parser.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/parserutils.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/processor.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__init__.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__/csvresults.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__/csvresults.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__/graph.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__/graph.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__/jsonresults.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__/jsonresults.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__/rdfresults.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__/rdfresults.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__/tsvresults.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__/tsvresults.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__/txtresults.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__/txtresults.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__/xmlresults.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/__pycache__/xmlresults.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/csvresults.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/graph.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/jsonresults.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/rdfresults.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/tsvresults.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/txtresults.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/results/xmlresults.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/sparql.py
/usr/lib/python3.11/site-packages/rdflib/plugins/sparql/update.py
/usr/lib/python3.11/site-packages/rdflib/plugins/stores
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__init__.py
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__/auditable.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__/auditable.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__/berkeleydb.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__/berkeleydb.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__/concurrent.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__/concurrent.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__/memory.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__/memory.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__/regexmatching.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__/regexmatching.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__/sparqlconnector.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__/sparqlconnector.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__/sparqlstore.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/__pycache__/sparqlstore.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/auditable.py
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/berkeleydb.py
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/concurrent.py
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/memory.py
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/regexmatching.py
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/sparqlconnector.py
/usr/lib/python3.11/site-packages/rdflib/plugins/stores/sparqlstore.py
/usr/lib/python3.11/site-packages/rdflib/py.typed
/usr/lib/python3.11/site-packages/rdflib/query.py
/usr/lib/python3.11/site-packages/rdflib/resource.py
/usr/lib/python3.11/site-packages/rdflib/serializer.py
/usr/lib/python3.11/site-packages/rdflib/store.py
/usr/lib/python3.11/site-packages/rdflib/term.py
/usr/lib/python3.11/site-packages/rdflib/tools
/usr/lib/python3.11/site-packages/rdflib/tools/__init__.py
/usr/lib/python3.11/site-packages/rdflib/tools/__pycache__
/usr/lib/python3.11/site-packages/rdflib/tools/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/tools/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/tools/__pycache__/csv2rdf.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/tools/__pycache__/csv2rdf.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/tools/__pycache__/defined_namespace_creator.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/tools/__pycache__/defined_namespace_creator.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/tools/__pycache__/graphisomorphism.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/tools/__pycache__/graphisomorphism.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/tools/__pycache__/rdf2dot.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/tools/__pycache__/rdf2dot.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/tools/__pycache__/rdfpipe.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/tools/__pycache__/rdfpipe.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/tools/__pycache__/rdfs2dot.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/rdflib/tools/__pycache__/rdfs2dot.cpython-311.pyc
/usr/lib/python3.11/site-packages/rdflib/tools/csv2rdf.py
/usr/lib/python3.11/site-packages/rdflib/tools/defined_namespace_creator.py
/usr/lib/python3.11/site-packages/rdflib/tools/graphisomorphism.py
/usr/lib/python3.11/site-packages/rdflib/tools/rdf2dot.py
/usr/lib/python3.11/site-packages/rdflib/tools/rdfpipe.py
/usr/lib/python3.11/site-packages/rdflib/tools/rdfs2dot.py
/usr/lib/python3.11/site-packages/rdflib/util.py
/usr/lib/python3.11/site-packages/rdflib/void.py
/usr/share/doc/packages/python311-rdflib
/usr/share/doc/packages/python311-rdflib/CHANGELOG.md
/usr/share/doc/packages/python311-rdflib/CONTRIBUTORS
/usr/share/doc/packages/python311-rdflib/README.md
/usr/share/licenses/python311-rdflib
/usr/share/licenses/python311-rdflib/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Oct 26 23:59:49 2024