【随笔】Curl 和 Python

设计了一套api,然后需要想里面Get,Post数据。一直用Python的requests库,发现curl也非常好用

In [8]: data = '{"service":"service01", "regexp":"regexp01"}'

In [9]: r = requests.post("http://127.0.0.1:8080/services", data=data)

In [10]: r.status_code
Out[10]: 200
lee-Macbook-Air:~ lee$ curl -X "POST" http://127.0.0.1:8080/services \
-d '{"service":"service04", "regexp":"regexp04"}'
{"success":true}

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

开始在上面输入您的搜索词,然后按回车进行搜索。按ESC取消。

返回顶部