0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

pythonでエクセルファイルを作成してみた

Last updated at Posted at 2024-08-06

openpyxlとpandasを触り始めたので、ひとまずtxtをexcelファイルにペーストする簡易なコードを書いてみた。

ライブラリのインストール

pip install openpyxl pandas

Openpyxlの場合

テンプレート(ヘッダーあり)を用意して別ファイルへ保存する。ws.append()で何も書かれてない行から書き込めるので、2行目からテキストの内容が書き込まれた

import csv
import openpyxl

TEMPLATE = "template.xlsx"

with open("result.txt", encoding="utf-8", newline='') as txt:
    reader = csv.reader(txt, delimiter='\t')
    data =  [row for row in reader]

wb = openpyxl.load_workbook(TEMPLATE)
ws = wb["result"]

[ws.append(row) for row in data]

# Excelファイルを保存
wb.save("output.xlsx")

Pandasの場合

ExcelWriter()で引数mode='a'にすることで既存のExcelファイルに書き込みできる1
また、テキストの行数が多かったのでchunkを使用することで読み込むようにした2

import pandas as pd

if __name__ == "__main__":
    target_file = "sample.txt"
    output_file = "sample.xlsx"
    target_sheet = "sample1"

    with pd.ExcelWriter(output_file, mode="a", if_sheet_exists="overlay") as writer:
        for i, chunk in enumerate(pd.read_csv(target_file, sep="\t", encoding="utf-8", header=None, chunksize=100)):
            if i == 0:
                chunk.to_excel(writer, sheet_name=target_sheet, index=False, header=False, startrow=1)
            else:
                chunk.to_excel(writer, sheet_name=target_sheet, index=False, header=False, startrow=writer.sheets[target_sheet].max_row)
  1. pandasでExcelファイル(xlsx, xls)の書き込み

  2. Python Pandasを使った大規模CSVファイルの高速処理方法

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?