swifmaneum
swifmaneum
I'm facing the same issue. Following minimal example to reproduce it with Postgres: ``` import flask import flask_sqlalchemy import flask_restless app = flask.Flask(__name__) app.config['DEBUG'] = True app.config['SQLALCHEMY_DATABASE_URI'] = 'postgres://postgres:[email protected]:1234/postgres' db...
I definitely support this feature request! In the meantime, you can use the SBD function from [this repo](https://github.com/johnpaparrizos/kshape): ```python def _sbd(x, y): """ >>> _sbd([1,1,1], [1,1,1]) (-2.2204460492503131e-16, array([1, 1, 1]))...
Hi @GillesVandewiele, sure, I added a WIP merge request. Tests and documentation are still lacking...
Thanks @MichaelTiemannOSC : Prefixing with @ works for me: ``` quantity = Q(2, 'lbf ft') print(df.query(f"torque >= @quantity")) ``` I'm still wondering if `df.query(f"torque >= {Q(2, 'lbf ft')}")` should actually...