Coverage for src / sparqlite / __init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.12.0, created at 2026-03-21 11:59 +0000
« prev ^ index » next coverage.py v7.12.0, created at 2026-03-21 11:59 +0000
1# SPDX-FileCopyrightText: 2025-2026 Arcangelo Massari <arcangelo.massari@unibo.it>
2#
3# SPDX-License-Identifier: ISC
5"""sparqlite - a modern, lightweight SPARQL 1.1 client for Python."""
7from sparqlite.client import HTTPMethod, SPARQLClient
8from sparqlite.exceptions import EndpointError, QueryError, SPARQLError
10__version__ = "0.1.0"
12__all__ = [
13 "HTTPMethod",
14 "SPARQLClient",
15 "SPARQLError",
16 "QueryError",
17 "EndpointError",
18]