Skip to content

Commit 1852794

Browse files
authored
Update README.md
1 parent 78c55af commit 1852794

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

docs/README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ This very experimental extension spawns an HTTP Client from within DuckDB resolv
55

66
> Experimental: USE AT YOUR OWN RISK!
77
8-
### GET
8+
### Functions
9+
- `http_get(url)`
10+
- `http_post(url, headers, params)`
11+
12+
#### GET
913
```sql
1014
D SET autoinstall_known_extensions=1; SET autoload_known_extensions=1;
1115
D WITH __input AS (
@@ -53,7 +57,7 @@ D WITH __input AS (
5357
└──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
5458
```
5559

56-
### POST (WIP)
60+
#### POST (WIP)
5761
```sql
5862
D SELECT
5963
http_post(
@@ -68,3 +72,7 @@ D SELECT
6872
AS data;
6973
```
7074

75+
76+
#### Acknowledgements
77+
78+
Implementation inspired by [https://github.com/duckdb/duckdb/pull/11548] PR by @ahuarte47

0 commit comments

Comments
 (0)