東京証券プライム市場上場企業URL一覧

ダウンロード20260331

サンプル

1301,極洋,https://www.kyokuyo.co.jp/
1332,ニッスイ,https://www.nissui.co.jp/
1333,Umios,https://www.umios.com/

マークダウンを作成する Python

import csv

output = []
with open(r"D:\stock-link-generator\csvjj.csv", "r", encoding="utf-8") as f:
    reader = csv.reader(f)
    for row in reader:
        output.append(f"- **{row[0]} {row[1]}** — [{row[2]}]({row[2]})")

with open(r"D:\stock-link-generator\output.md", "w", encoding="utf-8") as f:
    f.write("\n".join(output))

一覧

Posted by eightban