File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -10,16 +10,16 @@ Documentation
1010
1111.. _Documentation : https://atlassian-python-api.readthedocs.io/en/latest/index.html
1212
13- Examples
14- --------
15- .. tip :: More examples in ``examples/`` directory.
16-
17- For everyday normal use, just install package using pip
18-
13+ Install
14+ -------
1915.. code-block :: console
2016
2117 $ pip install atlassian-python-api
2218
19+ Examples
20+ --------
21+ **More examples in ``examples/`` directory. **
22+
2323Here's a short example how to create a Confluence page:
2424
2525.. code-block :: python
@@ -49,7 +49,7 @@ And here's another example how to get issues from Jira using JQL Query:
4949 username = ' admin' ,
5050 password = ' admin' )
5151
52- JQL = ' project = DEMO AND status NOT IN (Closed, Resolved ) ORDER BY issuekey'
52+ JQL = ' project = DEMO AND status IN ("To Do", "In Progress" ) ORDER BY issuekey'
5353
5454 data = jira.jql(JQL )
5555 print (data)
You can’t perform that action at this time.
0 commit comments