JQLスクリプトを呼び出すスクリプトをPythonで作成しています。どうすればいいですか?
curl -D- -u fred:fred -X GET -H "Content-Type: application/json" http://kelpie9:8081/rest/api/2/search?jql=assignee=fred+order+by+duedate
上記が JQL クエリであるとします。
これは私がこれまでに持っているものですが、「無効な構文」エラーが発生しています。
from grt import executeScript
querystring = "curl -D- -u fred:fred -X GET -H "Content-Type: application/json" http://kelpie9:8081/rest/api/2/search?jql=project=QA+order+by+duedate&fields=id,key"
executeScript(querystring)
これは私のエラーです:
File "/home/.spyder2/temp.py", line 19
querystring = "curl -D- -u fred:fred -X GET -H "Content-Type: application/json" http://kelpie9:8081/rest/api/2/search?jql=project=QA+order+by+duedate&fields=id,key"
^
SyntaxError: invalid syntax