Metadata-Version: 2.5
Name: kci-confluence-cli
Version: 0.4.2
Summary: Confluence v6.15.7を操作するためのCLIです。
Project-URL: Repository, https://github.com/kurusugawa-computer/confluence-cli
Author: Kurusugawa Computer Inc.
License: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Utilities
Requires-Python: >=3.12
Requires-Dist: backoff
Requires-Dist: lxml
Requires-Dist: more-itertools
Requires-Dist: pyquery>=2
Requires-Dist: pyyaml
Requires-Dist: requests
Requires-Dist: requests-toolbelt>=1
Description-Content-Type: text/markdown

# confluence-cli
Confluence v6.15.7を操作するためのCLIです。


[![Test](https://github.com/kurusugawa-computer/confluence-cli/actions/workflows/lint-test.yml/badge.svg)](https://github.com/kurusugawa-computer/confluence-cli/actions/workflows/lint-test.yml)
[![PyPI version](https://badge.fury.io/py/kci-confluence-cli.svg)](https://badge.fury.io/py/kci-confluence-cli)
[![Python Versions](https://img.shields.io/pypi/pyversions/kci-confluence-cli.svg)](https://pypi.org/project/kci-confluence-cli/)
[![Documentation Status](https://readthedocs.org/projects/confluence-cli/badge/?version=latest)](https://confluence-cli.readthedocs.io/ja/latest/?badge=latest)

# Requirements
Python 3.12+

# Install

```bash
$ pip install kci-confluence-cli
```

`uv` を使用している場合は、インストールせずに実行することもできます。

```bash
$ uvx --from kci-confluence-cli confluence page get_body --page_id 123456
```


# Quick Start

環境変数で認証情報を設定:

```bash
export CONFLUENCE_USER_NAME="your_username"
export CONFLUENCE_USER_PASSWORD="your_password"
export CONFLUENCE_BASE_URL="https://your-domain.com/confluence"
```

ページ本文を取得:

```bash
$ confluence page get_body --page_id 123456
```

# Documentation

詳細な使い方は [ドキュメント](https://confluence-cli.readthedocs.io/ja/latest/) を参照してください。

- [Getting Started](https://confluence-cli.readthedocs.io/ja/latest/user_guide/getting_started.html) - インストール方法と基本的な使い方
- [User Guide](https://confluence-cli.readthedocs.io/ja/latest/user_guide/index.html) - チュートリアルと実践的な使い方
- [Command Reference](https://confluence-cli.readthedocs.io/ja/latest/command_reference/index.html) - 全コマンドのリファレンス
