Skip to content

Commit 113fb2a

Browse files
committed
1 parent d8db1d4 commit 113fb2a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

http/get.sc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,10 @@ requests.get(
1515
"http://httpbin.org/headers",
1616
headers = Map("user-agent" -> "data's demo")
1717
).text
18+
19+
20+
// $ curl -X GET "http://httpbin.org/drip?duration=2&numbytes=10"
21+
requests.get(
22+
"http://httpbin.org/drip",
23+
params = Map("duration" -> "2", "numbytes" -> "10")
24+
).text

0 commit comments

Comments
 (0)