Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
lmangani authored Oct 20, 2024
1 parent 78c55af commit 1852794
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ This very experimental extension spawns an HTTP Client from within DuckDB resolv

> Experimental: USE AT YOUR OWN RISK!
### GET
### Functions
- `http_get(url)`
- `http_post(url, headers, params)`

#### GET
```sql
D SET autoinstall_known_extensions=1; SET autoload_known_extensions=1;
D WITH __input AS (
Expand Down Expand Up @@ -53,7 +57,7 @@ D WITH __input AS (
└──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
```

### POST (WIP)
#### POST (WIP)
```sql
D SELECT
http_post(
Expand All @@ -68,3 +72,7 @@ D SELECT
AS data;
```


#### Acknowledgements

Implementation inspired by [https://github.com/duckdb/duckdb/pull/11548] PR by @ahuarte47

0 comments on commit 1852794

Please sign in to comment.