Maxwell Flitton

Results 45 comments of Maxwell Flitton

@loloxwg the dynamic C lib wrapped is now merged and working. You can find it [here](https://github.com/surrealdb/surrealml/tree/main/clients/python).

thanks for raising this, I will create a test case to get to the bottom of it

It depends on what you want. For instance, if you're making decisions in finance or insurance, you need to ensure that you are adhering to regulations with backtesting and explainable...

Hey thanks for posting this. We have recently taken the cbor lib under our own hands so we have more control over it. You an see the process we took...

Hey @TudorAndrei-Pythia I have now done this [pull request](https://github.com/surrealdb/surrealdb.py/pull/175). It has the following [test case](https://github.com/surrealdb/surrealdb.py/blob/cb6144acdff2bd8be0b2971169f2a31b28d0fcee/tests/unit_tests/data_types/test_duration.py) which I hope provides you with the functionality you need.

@turbokadi sorry for dropping the ball here will work on the pull request comments today

@4F2E4A2E we have now increased the size of the websocket to the max size by default. Is the new python client solving your issue?

@4F2E4A2E thanks for getting back to me. We will look into chunking and streaming later on to support even bigger data queries. Closing this now. If you have any requests...

Hey @dyleeeeeeee thanks for the suggestion. I have raised it with the team and we are discussing it as it has gel with the other SDKs and surrealDB server. I...

From what I understand the following: ```python response1 = await self.connection.query("SELECT * FROM user WHERE id = user:tobie;") print(response1) ``` prints out the structure below: ```python [{'id': RecordID(table_name=user, record_id=tobie), 'name':...