From 81010fc015fbd8cba12ba86b27e4e88b8b79c179 Mon Sep 17 00:00:00 2001 From: Ambertide Date: Mon, 26 Jul 2021 09:32:52 +0300 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a94ba42..f4b9112 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ [![PyPI license](https://img.shields.io/pypi/l/datalite.svg)](https://pypi.python.org/pypi/datalite/) [![Documentation Status](https://readthedocs.org/projects/datalite/badge/?version=latest)](https://datalite.readthedocs.io/en/latest/?badge=latest) +It should be noted that Datalite is not suitable for secure web applications, it really is only suitable for cases when you can trust user input. + Datalite is a simple Python package that binds your dataclasses to a table in a sqlite3 database, using it is extremely simple, say that you have a dataclass definition, @@ -108,4 +110,4 @@ and returns the object whose `field` equals the provided `value`. `datalite` also supports pagination on `fetch_if`, `fetch_all` and `fetch_where`, you can specify `page` number and `element_count` for each page (default 10), for -these functions in order to get a subgroup of records. \ No newline at end of file +these functions in order to get a subgroup of records.