generated from duckdb/extension-template
-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
Description
Hello,
I use the Warp 10 time series and planned to add duckdb as a cache and transformation layer to speed some analysis. Currently running a POC on this.
Warp 10 provides a HTTP api but calls for the exec endpoint may be what they call "WarpScript". So basically it's plain text containing some instructions to be run. This is not a MAP
To provide some examples:
curl https://sandbox.senx.io/api/v0/exec --data "REV"
["3.5.0-1-ge909c8ac2"]
curl https://sandbox.senx.io/api/v0/exec --data "2 2 +"
[4]
I have more complex scripts which are several dozen lines long but let's start with simple queries.
Would it be possible to query Warp 10 exec endpoint with http_client ?
Right now, I can't find yet the right syntax to use.
Thanks in advance for your help !