如何在python中读取Curl中的--data传递的数据?

时间:2017-02-12 02:06:29

标签: python http curl flask https

我正在尝试在python中使用curl -d选项读取传递的数据。

数据是JSON,我尝试使用  --data '{"title":"foobar","body": "This body has both "double" and 'single' quotes"}'

request.get_json()
request.json.get('title')

...但我无法让它发挥作用

1 个答案:

答案 0 :(得分:0)

使用正确的引用:您可以在单引号字符串中插入单引号,方法是结束它,放入转义引号,然后开始一个新引号。

以下是一个例子:

--data '{"title":"foobar","body": "This body has both "double" and '\''single'\'' quotes"}'