Skip to content

Commit

Permalink
Update http_client to v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lmangani authored and carlopi committed Nov 9, 2024
1 parent 4bb2a20 commit b18b0db
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions extensions/http_client/description.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,33 @@
extension:
name: http_client
description: DuckDB HTTP Client Extension
version: 0.0.2
version: 0.0.3
language: C++
build: cmake
license: MIT
excluded_platforms: "windows_amd64_mingw"
maintainers:
- lmangani
- ahuarte47

repo:
github: quackscience/duckdb-extension-httpclient
ref: db0ebb7f8c2688ff7a785b83a387bf782d13afd1
ref: 9b006341fa0fe9ade344620c40d867babe359645

docs:
hello_world: |
-- GET Request Example w/ JSON Parsing
WITH __input AS (
SELECT
http_get(
'https://httpbin.org/delay/0'
) AS res
SELECT
http_get(
'https://httpbin.org/delay/0',
headers => MAP {
'accept': 'application/json',
},
params => MAP {
'limit': 1
}
) AS res
),
__response AS (
SELECT
Expand All @@ -33,7 +40,7 @@ docs:
SELECT
__response.status,
__response.reason,
__response.Host AS host,
__response.Host AS host
FROM
__response
;
Expand All @@ -53,6 +60,7 @@ docs:
'accept': 'application/json',
},
params => MAP {
'limit': 1
}
) AS res
),
Expand Down

0 comments on commit b18b0db

Please sign in to comment.