atlassian-python-api icon indicating copy to clipboard operation
atlassian-python-api copied to clipboard

Atlassian Python REST API wrapper

Results 281 atlassian-python-api issues
Sort by recently updated
recently updated
newest added

how to use atlassian-python-api to get servicedesk/customer infos? It's that avaliable? ```python service_desk = ServiceDesk( url=self.server, username=self.username, password=self.password, cloud=True # Set to False if using Jira Server/Data Center # cookies=cookie_dict...

Hi: I try to use python sdk to manage the variables in a repo.According to [https://developer.atlassian.com/cloud/bitbucket/rest/api-group-pipelines/#api-repositories-workspace-repo-slug-pipelines-config-variables-variable-uuid-get](url),if I want to update a variable named "qww" listed in repository variables,I have to...

The [latest python sdk](https://pypi.org/project/atlassian-python-api/4.0.4/) doesn't support fetching folders. There is extensive support to fetch pages, but none for folders. It seems that only the [rest/v2/api-group](https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-folder/#api-folders-id-get) supports it at the moment....

Hi all, I plan to use the Jira API to add comments, and I would like to ask how to add a reply to a comment. Thanks & Regards, Lil

### Make `beautifulsoup4` an Optional Dependency #### Summary This PR moves `beautifulsoup4` to an **optional dependency**, installable via the `html` extra: ```bash pip install atlassian-python-api[html] ``` #### Rationale * **Limited...

``` # 读取wiki_key.txt with open('data/WIKI_key.txt', 'r', encoding='utf-8') as f: wiki_key = f.read() print(wiki_key) confluence = Confluence( url='https://wiki.xxx.com', token = 'xxxxxxxxxxxxxxxxxx') # username='xxxxxxxxxxx', # password='xxxxxxxxxxxxx') ``` when use `with open('data/WIKI_key.txt', 'r',...

Hi all, my use-case: - the authorization details for my REST request are coming from "outside" as http-header - I as developer, want to forward this header to the request...

Hi, atlassian has a GraphQL API: https://developer.atlassian.com/cloud/confluence/graphql/#overview. Were there any considerations to also support this api? The GraphQL API is used by the Web UI. For me especially the endpoint...

It is not possible to read a User from a PR comment, if the User has type="app_user". ``` File "/opt/atlassian/pipelines/agent/build/.venv/lib/python3.12/site-packages/atlassian/bitbucket/cloud/common/comments.py", line 34, in user return User(None, self.get_data("user"), **self._new_session_args) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File...