{"id":19954479,"url":"https://github.com/isaccanedo/atlassian-python-api","last_synced_at":"2026-06-13T10:31:16.153Z","repository":{"id":239349963,"uuid":"799291541","full_name":"isaccanedo/atlassian-python-api","owner":"isaccanedo","description":":rocket: Atlassian Python REST API wrapper","archived":false,"fork":false,"pushed_at":"2024-05-13T01:34:38.000Z","size":329,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-01T15:29:18.462Z","etag":null,"topics":["advanced-roadmaps","api","atlassian","atlassian-jira","bamboo","bitbucket","confluence","crowd","hacktoberfest","jira","jira-service-desk","python","rest","tempo","xray"],"latest_commit_sha":null,"homepage":"https://atlassian-python-api.readthedocs.io/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/isaccanedo.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-11T17:30:13.000Z","updated_at":"2024-05-13T01:34:40.000Z","dependencies_parsed_at":"2025-01-12T06:42:13.119Z","dependency_job_id":"7968c332-8eda-43d4-a311-82a86f7b1be7","html_url":"https://github.com/isaccanedo/atlassian-python-api","commit_stats":null,"previous_names":["isaccanedo/atlassian-python-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/isaccanedo/atlassian-python-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isaccanedo%2Fatlassian-python-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isaccanedo%2Fatlassian-python-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isaccanedo%2Fatlassian-python-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isaccanedo%2Fatlassian-python-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/isaccanedo","download_url":"https://codeload.github.com/isaccanedo/atlassian-python-api/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isaccanedo%2Fatlassian-python-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34281700,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-13T02:00:06.617Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["advanced-roadmaps","api","atlassian","atlassian-jira","bamboo","bitbucket","confluence","crowd","hacktoberfest","jira","jira-service-desk","python","rest","tempo","xray"],"created_at":"2024-11-13T01:20:33.194Z","updated_at":"2026-06-13T10:31:16.118Z","avatar_url":"https://github.com/isaccanedo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"============================\nAtlassian Python API wrapper\n============================\n|Build Status| |PyPI version| |PyPI - Downloads| |License| |Codacy Badge| |Docs| |Discord|\n\nWhat is it???\n___________\nThe **atlassian-python-api** library provides a **simple** and convenient way to interact with Atlassian products\n(such as Jira Service management, Jira Software, Confluence, Bitbucket and apps Insight, X-Ray) using Python.\nIt is based on the official REST APIs of these products, as well as additional private methods and protocols\n(such as xml+rpc and raw HTTP requests).\nThis library can be used to automate tasks, integrate with other tools and systems,\nand build custom applications that interact with Atlassian products.\nIt supports a wide range of Atlassian products, including Jira, Confluence, Bitbucket, StatusPage and others,\nand is compatible with both Atlassian Server and Cloud instances.\n\nOverall, the **atlassian-python-api** is a useful tool for Python developers who want to work with Atlassian products.\nIt is well-documented and actively maintained, and provides a convenient way to access the full range of\nfunctionality offered by the Atlassian REST APIs.\n\n\nDocumentation\n_____________\n\n`Documentation`_\n\n.. _Documentation: https://atlassian-python-api.readthedocs.io\n\nHow to Install?\n_______________\n\nFrom PyPI\n\n.. code-block:: console\n\n   $ pip install atlassian-python-api\n\nFrom Source\n\n- Git clone repository\n- Use :code:`pip install -r requirements.txt` to install the required packages\n- or :code:`pipenv install \u0026\u0026 pipenv install --dev`\n\nExamples\n________\nMore **examples** in :code:`examples/` directory.\n\nHere's a short example of how to create a Confluence page:\n\n.. code-block:: python\n\n    from atlassian import Confluence\n\n    confluence = Confluence(\n        url='http://localhost:8090',\n        username='admin',\n        password='admin')\n\n    status = confluence.create_page(\n        space='DEMO',\n        title='This is the title',\n        body='This is the body. You can use \u003cstrong\u003eHTML tags\u003c/strong\u003e!')\n\n    print(status)\n\nPlease, note Confluence Cloud need to be used via token parameter.\nAnd here's another example of how to get issues from Jira using JQL Query:\n\n.. code-block:: python\n\n    from atlassian import Jira\n\n    jira = Jira(\n        url='http://localhost:8080',\n        username='admin',\n        password='admin')\n    JQL = 'project = DEMO AND status IN (\"To Do\", \"In Progress\") ORDER BY issuekey'\n    data = jira.jql(JQL)\n    print(data)\n\nAlso, you can use the Bitbucket module e.g. for getting project list\n\n.. code-block:: python\n\n    from atlassian import Bitbucket\n\n    bitbucket = Bitbucket(\n            url='http://localhost:7990',\n            username='admin',\n            password='admin')\n\n    data = bitbucket.project_list()\n    print(data)\n\nNow you can use the Jira Service Desk module. See docs.\nExample to get your requests:\n\n.. code-block:: python\n\n    from atlassian import ServiceDesk\n\n    sd = ServiceDesk(\n            url='http://localhost:7990',\n            username='admin',\n            password='admin')\n\n    data = sd.get_my_customer_requests()\n    print(data)\n\nUsing Insight (CMDB Tool for Jira):\n\n.. code-block:: python\n\n    from atlassian import Insight\n\n    insight = Insight(\n            url='http://localhost:7990',\n            username='admin',\n            password='admin')\n\n    data = insight.get_object(88)\n    print(data)\n\n\nUsing Xray (Test Management tool for Jira):\n\n.. code-block:: python\n\n    from atlassian import Xray\n\n    xr = Xray(\n           url='http://localhost:7990',\n            username='admin',\n            password='admin')\n\n    data = xr.get_tests('TEST-001')\n    print(data)\n\nUsing Bamboo:\n\n.. code-block:: python\n\n    from atlassian import Bamboo\n\n    bamboo = Bamboo(\n            url='http://localhost:6990/bamboo/',\n            token=\"\u003cTOKEN\u003e\")\n\n    data = bamboo.get_elastic_configurations()\n    print(data)\n\nIf you want to see the response in pretty print format JSON. Feel free for use construction like:\n\n.. code-block:: python\n\n    from pprint import pprint\n    # you code here\n    # and then print using pprint(result) instead of print(result)\n    pprint(response)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisaccanedo%2Fatlassian-python-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fisaccanedo%2Fatlassian-python-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisaccanedo%2Fatlassian-python-api/lists"}