File size: 979 Bytes
c3cf787
 
 
 
 
14138da
 
 
c3cf787
 
14138da
c3cf787
 
 
 
 
 
14138da
 
c3cf787
 
 
 
 
14138da
c3cf787
 
14138da
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from fastapi import FastAPI
from playwright.sync_api import sync_playwright

app = FastAPI()

@app.on_event("startup")
def on_startup():
    # 起動時に自動的にMHTMLを取得
    url = "https://civitai.com/models/1055452/akashicpulse"
    output_path = "akashicpulse.mhtml"

    try:
        with sync_playwright() as p:
            browser = p.chromium.launch(headless=True)
            page = browser.new_page()
            page.goto(url, wait_until="networkidle")

            cdp = page.context.new_cdp_session(page)
            snapshot = cdp.send("Page.captureSnapshot", {"format": "mhtml"})

            browser.close()

        with open(output_path, "w", encoding="utf-8") as f:
            f.write(snapshot)
        print(f"[INFO] MHTML saved to: {output_path}")

    except Exception as e:
        print(f"[ERROR] Failed to save MHTML: {e}")

@app.get("/")
def read_root():
    return {"message": "Startup event attempted to save MHTML to akashicpulse.mhtml."}