CLI を使用してテキストファイルをドキュメントファイル(.docx)に変換する方法


  1. 必要なソフトウェアのインストール:

    • Python: コマンドプロンプトまたはターミナルでPythonスクリプトを実行するために必要です。
    • python-docx ライブラリ: ドキュメントファイルを作成および編集するためのPythonライブラリです。pipコマンドを使用してインストールできます。
  2. テキストファイルをドキュメントファイルに変換するPythonスクリプトを作成します。以下はサンプルスクリプトです。

from docx import Document
def convert_txt_to_docx(txt_file, docx_file):
    # テキストファイルを読み込む
    with open(txt_file, 'r', encoding='utf-8') as file:
        content = file.read()
    # 新しいドキュメントを作成し、テキストを追加する
    document = Document()
    document.add_paragraph(content)
    # ドキュメントファイルを保存する
    document.save(docx_file)
# ファイルパスとファイル名を指定して変換を実行する
txt_file = 'input.txt'
docx_file = 'output.docx'
convert_txt_to_docx(txt_file, docx_file)
  1. 上記のスクリプトをテキストファイルに保存します(例: txt_to_docx_converter.py)。

  2. コマンドプロンプトまたはターミナルを開き、以下のコマンドを実行します。

python txt_to_docx_converter.py
  1. 実行すると、指定したテキストファイル(input.txt)がドキュメントファイル(output.docx)に変換されます。