Metadata-Version: 2.1
Name: pymongoexpr
Version: 0.1.1
Summary: Simple MongoDB filter expression parsing library
License: MIT
Author: Amir Nagri
Author-email: amir.nagri@proton.me
Requires-Python: >=3.8.1,<3.12
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
Description-Content-Type: text/markdown

# pymongoexpr

Simple python library to parse limited MongoDB filter expression and represent as Python object

# setup

1. checkout the code
1. install the pre-commit git hook
    `pre-commit install`
1. install the dependencies
    `poetry install`
1. run the test
    `poetry run pytest`
1. build the project
    `poetry build`
1. run pre-commit
    `poetry run pre-commit run --all-files`

