Metadata-Version: 2.4
Name: query-collection
Version: 0.1.7
Summary: This should be an interface and implementation of a collection that holds SPARQL 1.1 queries.
Author: Natanael Arndt
Author-email: arndtn@gmail.com
Requires-Python: >=3.9,<4.0.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: rdflib (>=7.1.4,<9.0.0)
Project-URL: Bug Tracker, https://github.com/white-gecko/query-collection/issues
Project-URL: Homepage, https://github.com/white-gecko/query-collection
Project-URL: Repository, https://github.com/white-gecko/query-collection.git
Description-Content-Type: text/markdown

# query-collection

This should be an interface and implementation of a collection that holds SPARQL
1.1 queries.

## Usage

```python
from rdflib import Graph
from query_collection import TemplateQueryCollection

tqc = TemplateQueryCollection()
tqc.loadFromDirectory("path/to/dir/with/query/files")
example_query_template = tqc.get("example")

g = Graph()
g.query(**example_query_template.prepare())

```
