Coverage for src / sparqlite / __init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.12.0, created at 2025-12-20 08:07 +0000

1"""sparqlite - a modern, lightweight SPARQL 1.1 client for Python.""" 

2 

3from sparqlite.client import SPARQLClient 

4from sparqlite.exceptions import EndpointError, QueryError, SPARQLError 

5 

6__version__ = "0.1.0" 

7 

8__all__ = [ 

9 "SPARQLClient", 

10 "SPARQLError", 

11 "QueryError", 

12 "EndpointError", 

13]