ai/at
1
0
This commit is contained in:
2025-05-27 01:21:35 +09:00
parent bd3299154c
commit 6f4712e461
3 changed files with 201 additions and 0 deletions

10
scpt/generate_record.py Normal file
View File

@ -0,0 +1,10 @@
import json
record = {
"$type": "app.bsky.feed.post",
"text": "テスト投稿 from script",
"createdAt": "2025-05-26T12:00:00Z"
}
with open("record.json", "w", encoding="utf-8") as f:
json.dump(record, f, ensure_ascii=False, indent=2)