feat: query builder

This commit is contained in:
yim7
2022-09-21 22:05:04 +08:00
parent 438aec7699
commit 70a6e2bd78
8 changed files with 825 additions and 0 deletions

22
pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[tool.poetry]
name = "opensearch-orm"
version = "0.1.0"
description = ""
authors = ["yim7 <yimchiu7@gmail.com>"]
readme = "README.md"
packages = [{include = "opensearchorm"}]
[tool.poetry.dependencies]
python = "^3.8"
opensearch-py = "^2.0.0"
pytz = "^2022.2.1"
pydantic = "^1.10.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
black = "^22.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"