eve-sqlalchemy icon indicating copy to clipboard operation
eve-sqlalchemy copied to clipboard

SQLAlchemy data layer for Eve-powered RESTful APIs

Results 44 eve-sqlalchemy issues
Sort by recently updated
recently updated
newest added

Testing eve-sqlalchemy with Eve 1.1.5. and there are couple of Cerberus validator warnings and they break schema generation. ```python from eve_sqlalchemy.validation import ValidatorSQL ``` ```python .../python3.9/site-packages/cerberus/validator.py:1607: UserWarning: No validation schema...

Hi, all! I've faced with issue after upgrading eve-sqlalchemy from 0.4.1 to 0.7.1. My package versions are following: - flask==0.12 - sqlalchemy==1.3 - Eve==0.7.2 - Eve-sqlalchemy==0.7.1 One of my model...

Do you plan to support SQLAlchemy 1.4?

Hi, When I try to post a JSON payload via my endpoint /network, I get the following error. `TypeError: '_updated' is an invalid keyword argument for Network ` I would...

as `Eve` documentation says it supports uploading media/files by `media` type. this commit is just following the example at [http://python-eve.org/features.html#file-storage](http://python-eve.org/features.html#file-storage). One test is added for checking the validity of it.

Hi everyone, With these versions: Eve==0.7.10, Eve-SQLAlchemy==0.7.0, Cerberus==0.9.2, Flask-SQLAlchemy==2.3.2, SQLAlchemy==1.2.12, python 3.6.5, and postgres 9.5.5 I'm trying to insert a default value in a UUID primary key column defined as...

https://docs.python-eve.org/en/stable/features.html#operations-log

enhancement
contributor-friendly

**when column name is different from attribute name ('id') , there is a config exception and tells me User.id is not unique.** File "/var/flask_venv/apiv4/lib/python3.6/site-packages/eve_sqlalchemy/config/resourceconfig.py", line 39, in __init__ self.id_field =...

Hello, I have the following problem using eveSqlAlchemy 0.3.4 with eve 0.5.3: I specified a python function (get_user_id) as default value for a column in my Database to fill in...