Jay Marcyes

Results 144 issues of Jay Marcyes

## jsonable It would be cool if you could pass in `jsonable=False` and it would strip that field from a `.jsonable()` call, so... ```python class Foo(Orm): bar = Field(str, jsonable=False)...

by default, if you set a property on the Orm that isn't defined in the schema it will just be set on that instance of the Orm, it would be...

I couldn't remember why we always set the error level to critical in our products, so I set it to warning and ran the tests, and started getting logged errors...

if you passed in `2019-10-08 20:18:59.566Z` to your field, Postgres will validate it on write, but SQLite won't validate it until read, so SQLite will gladly accept any invalid date...

`addon.Orm` should have a special query that also supports `pk_name` so if you had `Foo` then you could do `Foo.query.is_foo_id` as an alias for `is_pk` and `is__id`

The idea would be if you had an orm class `Foo` then you could call `Foo.bars` and get all the `Bar` instances that contain the value in `Foo.pk`. There are...

Let's say you created a query like this: ```python stop_dt = datetime.datetime.utcnow() query.lte_stop( year=stop_dt.year, month=stop_dt.month, day=stop_dt.day ) ``` and you expect it to give you anything that is less than...

it will fail with a tuple index out of range error, but it might be nice for prom to catch this error and add more info like how many placeholders...

Take the ini input/output code from another project and add it to Orm, this is here to remind me to do that :)

This is what I got: ``` Traceback (most recent call last): File "/root/venv/lib/python3.6/site-packages/prom/interface/base.py", line 189, in connection yield connection File "/root/venv/lib/python3.6/site-packages/prom/interface/base.py", line 619, in _query cur.execute(query_str, query_args) sqlite3.InterfaceError: Error binding...