There was an error while loading. Please reload this page.
1 parent d8db1d4 commit 113fb2aCopy full SHA for 113fb2a
http/get.sc
@@ -15,3 +15,10 @@ requests.get(
15
"http://httpbin.org/headers",
16
headers = Map("user-agent" -> "data's demo")
17
).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