mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-03 14:13:54 -09:00
pyDAL is using xmlrpc at runtime. See: https://github.com/web2py/pydal/blob/v20260313.1/pydal/_compat.py#L114 Signed-off-by: Julien Olivain <ju.o@free.fr>
17 lines
651 B
Plaintext
17 lines
651 B
Plaintext
config BR2_PACKAGE_PYTHON_PYDAL
|
|
bool "python-pydal"
|
|
select BR2_PACKAGE_PYTHON3_PYEXPAT # runtime
|
|
help
|
|
pyDAL is a pure Python Database Abstraction Layer. It
|
|
dynamically generates the SQL in real time using the
|
|
specified dialect for the database back end, so that you do
|
|
not have to write SQL code or learn different SQL dialects
|
|
(the term SQL is used generically), and your code will be
|
|
portable among different types of databases.
|
|
|
|
pyDAL comes from the original web2py's DAL, with the aim of
|
|
being wide-compatible. pyDAL doesn't require web2py and can
|
|
be used in any Python context.
|
|
|
|
https://github.com/web2py/pydal
|