Metadata-Version: 2.3
Name: sanhe_atlassian_sdk
Version: 0.1.1
Summary: Sanhe's Atlassian SDK for Python
License: MIT
Author: Sanhe Hu
Author-email: husanhe@email.com
Maintainer: Sanhe Hu
Maintainer-email: husanhe@email.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Provides-Extra: auto
Provides-Extra: dev
Provides-Extra: doc
Provides-Extra: test
Requires-Dist: Sphinx (>=7.4.7,<8.0.0) ; extra == "doc"
Requires-Dist: build (>=1.2.1,<2.0.0) ; extra == "dev"
Requires-Dist: docfly (==3.0.0) ; extra == "doc"
Requires-Dist: furo (==2024.8.6) ; extra == "doc"
Requires-Dist: httpx (>=0.27.2,<1.0.0)
Requires-Dist: ipython (>=8.18.1,<8.19.0) ; extra == "doc"
Requires-Dist: nbsphinx (>=0.8.12,<1.0.0) ; extra == "doc"
Requires-Dist: pydantic (>=2.10.0,<3.0.0)
Requires-Dist: pygments (>=2.18.0,<3.0.0) ; extra == "doc"
Requires-Dist: pytest (>=8.2.2,<9.0.0) ; extra == "test"
Requires-Dist: pytest-cov (>=6.0.0,<7.0.0) ; extra == "test"
Requires-Dist: rich (>=13.8.1,<14.0.0) ; extra == "dev"
Requires-Dist: rstobj (==1.2.1) ; extra == "doc"
Requires-Dist: sphinx-copybutton (>=0.5.2,<1.0.0) ; extra == "doc"
Requires-Dist: sphinx-design (>=0.6.1,<1.0.0) ; extra == "doc"
Requires-Dist: sphinx-jinja (>=2.0.2,<3.0.0) ; extra == "doc"
Requires-Dist: twine (>=6.0.0,<7.0.0) ; extra == "dev"
Requires-Dist: wheel (>=0.45.0,<1.0.0) ; extra == "dev"
Project-URL: Changelog, https://github.com/MacHu-GWU/sanhe_atlassian_sdk-project/blob/main/release-history.rst
Project-URL: Documentation, https://sanhe-atlassian-sdk.readthedocs.io/en/latest/
Project-URL: Download, https://pypi.org/pypi/sanhe-atlassian-sdk#files
Project-URL: Homepage, https://github.com/MacHu-GWU/sanhe_atlassian_sdk-project
Project-URL: Issues, https://github.com/MacHu-GWU/sanhe_atlassian_sdk-project/issues
Project-URL: Repository, https://github.com/MacHu-GWU/sanhe_atlassian_sdk-project
Description-Content-Type: text/x-rst


.. image:: https://readthedocs.org/projects/sanhe-atlassian-sdk/badge/?version=latest
    :target: https://sanhe-atlassian-sdk.readthedocs.io/en/latest/
    :alt: Documentation Status

.. image:: https://github.com/MacHu-GWU/sanhe_atlassian_sdk-project/actions/workflows/main.yml/badge.svg
    :target: https://github.com/MacHu-GWU/sanhe_atlassian_sdk-project/actions?query=workflow:CI

.. image:: https://codecov.io/gh/MacHu-GWU/sanhe_atlassian_sdk-project/branch/main/graph/badge.svg
    :target: https://codecov.io/gh/MacHu-GWU/sanhe_atlassian_sdk-project

.. image:: https://img.shields.io/pypi/v/sanhe-atlassian-sdk.svg
    :target: https://pypi.python.org/pypi/sanhe-atlassian-sdk

.. image:: https://img.shields.io/pypi/l/sanhe-atlassian-sdk.svg
    :target: https://pypi.python.org/pypi/sanhe-atlassian-sdk

.. image:: https://img.shields.io/pypi/pyversions/sanhe-atlassian-sdk.svg
    :target: https://pypi.python.org/pypi/sanhe-atlassian-sdk

.. image:: https://img.shields.io/badge/✍️_Release_History!--None.svg?style=social&logo=github
    :target: https://github.com/MacHu-GWU/sanhe_atlassian_sdk-project/blob/main/release-history.rst

.. image:: https://img.shields.io/badge/⭐_Star_me_on_GitHub!--None.svg?style=social&logo=github
    :target: https://github.com/MacHu-GWU/sanhe_atlassian_sdk-project

------

.. image:: https://img.shields.io/badge/Link-API-blue.svg
    :target: https://sanhe-atlassian-sdk.readthedocs.io/en/latest/py-modindex.html

.. image:: https://img.shields.io/badge/Link-Install-blue.svg
    :target: `install`_

.. image:: https://img.shields.io/badge/Link-GitHub-blue.svg
    :target: https://github.com/MacHu-GWU/sanhe_atlassian_sdk-project

.. image:: https://img.shields.io/badge/Link-Submit_Issue-blue.svg
    :target: https://github.com/MacHu-GWU/sanhe_atlassian_sdk-project/issues

.. image:: https://img.shields.io/badge/Link-Request_Feature-blue.svg
    :target: https://github.com/MacHu-GWU/sanhe_atlassian_sdk-project/issues

.. image:: https://img.shields.io/badge/Link-Download-blue.svg
    :target: https://pypi.org/pypi/sanhe-atlassian-sdk#files


Welcome to ``sanhe_atlassian_sdk`` Documentation
==============================================================================
.. image:: https://sanhe-atlassian-sdk.readthedocs.io/en/latest/_static/sanhe_atlassian_sdk-logo.png
    :target: https://sanhe-atlassian-sdk.readthedocs.io/en/latest/

``sanhe_atlassian_sdk`` is a lightweight foundational library for interacting with
`Atlassian REST APIs <https://developer.atlassian.com/cloud/>`_.
It provides a unified HTTP client with both synchronous and asynchronous support,
serving as the base layer for product-specific SDKs.


About
------------------------------------------------------------------------------

This library is designed as a **low-level foundation** that handles common concerns
for Atlassian API interactions:

- **Unified HTTP Client**: Built on `httpx <https://www.python-httpx.org/>`_ for modern,
  high-performance HTTP operations
- **Sync and Async Support**: Seamlessly switch between synchronous and asynchronous
  request patterns based on your application needs
- **Authentication**: Built-in HTTP Basic Authentication for Atlassian Cloud APIs
- **Pydantic Integration**: Uses `Pydantic <https://docs.pydantic.dev/>`_ for robust
  configuration validation

**Product-Specific SDKs**: This library serves as the foundation for higher-level SDKs
that provide product-specific functionality:

- ``sanhe_confluence_sdk`` - Confluence Cloud API operations (coming soon)
- ``sanhe_jira_sdk`` - Jira Cloud API operations (coming soon)


Usage
------------------------------------------------------------------------------

.. code-block:: python

    from sanhe_atlassian_sdk import Atlassian

    # Initialize the client
    client = Atlassian(
        url="https://your-domain.atlassian.net",
        username="your-email@example.com",
        password="your-api-token",  # Use API token, not your account password
    )

    # Use the synchronous client
    response = client.sync_client.get(
        f"{client.url}/wiki/api/v2/spaces",
    )

    # Or use the asynchronous client
    async def fetch_spaces():
        response = await client.async_client.get(
            f"{client.url}/wiki/api/v2/spaces",
        )
        return response.json()

**Note**: For Atlassian Cloud, you should use an
`API token <https://support.atlassian.com/atlassian-account/docs/manage-api-tokens-for-your-atlassian-account/>`_
as the password, not your account password.


.. _install:

Install
------------------------------------------------------------------------------

``sanhe_atlassian_sdk`` is released on PyPI, so all you need is to:

.. code-block:: console

    $ pip install sanhe-atlassian-sdk

To upgrade to latest version:

.. code-block:: console

    $ pip install --upgrade sanhe-atlassian-sdk

