Metadata-Version: 2.1
Name: cypher_query_loader
Version: 0.1.1
Summary: Load cypher queries from a directory as python string objects.
License: MIT
Author: Ted Johnson
Author-email: ted.johnson87@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
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
Requires-Dist: pre-commit (>=3.5.0,<4.0.0)
Description-Content-Type: text/markdown

# Cypher Query Loader

A small package that handles loading strings from `*.cypher` files into python strings.  I use this code in packages that query a database and need saved queries.  It lets me keep the code in `.cypher` format and use syntax highlighing in my IDE.

<strong>Important safetly note:</strong>This code does not check cypher files for safety or security. End users should only point their QueryLoader objects at file systems they trust and control.
