https://github.com/yanyingwang/http-client
A practical http client library for sending data to http servers.
https://github.com/yanyingwang/http-client
http-client racket
Last synced: 4 months ago
JSON representation
A practical http client library for sending data to http servers.
- Host: GitHub
- URL: https://github.com/yanyingwang/http-client
- Owner: yanyingwang
- License: other
- Created: 2020-08-07T08:06:56.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-10T14:32:13.000Z (almost 2 years ago)
- Last Synced: 2025-07-06T00:11:40.958Z (12 months ago)
- Topics: http-client, racket
- Language: Racket
- Homepage: https://www.yanying.wang/http-client/
- Size: 459 KB
- Stars: 10
- Watchers: 2
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
http-client
===========
~~~racket
(require http-client)
(http-get "https://httpbin.org"
#:path "anything/fruits"
#:data (hasheq 'color "red" 'made-in "China" 'price 10)
#:headers (hasheq 'Accept "application/json" 'Token "temp-token-abcef"))
~~~
check more doc at: https://yanying.wang/http-client/
https://developer.mozilla.org/en-US/docs/Web/HTTP