Skip to content

Commit b262e32

Browse files
committed
Updated general README
1 parent 2f72deb commit b262e32

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,20 @@ Also, you can use the Bitbucket module e.g. for get project list
5858
data = bitbucket.project_list()
5959
print(data)
6060
61+
Now you can use Jira Service Desk module. See docs.
62+
Example to get your requests:
63+
64+
.. code-block:: python
65+
66+
from atlassian import ServiceDesk
67+
68+
sd = ServiceDesk(
69+
url='http://localhost:7990',
70+
username='admin',
71+
password='admin')
72+
my_requests = sd.get_my_customer_requests()
73+
print(my_requests)
74+
6175
Please make sure, you've checked ``examples/`` directory on how to build scripts using the API.
6276
If you want to see response in pretty print format json. Feel free for use construction like:
6377

0 commit comments

Comments
 (0)