一键导入
fukuoka-now
Scraper rules for Fukuoka Now event calendar (fukuoka-now.com/en/event/)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Scraper rules for Fukuoka Now event calendar (fukuoka-now.com/en/event/)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Planning principles, model selection, and scope rules for the Architect agent
Implementation rules for database migrations, Python scrapers, and Next.js web for the Engineer agent
BaseScraper contract, field rules, and Peatix-specific conventions for the Scraper Expert agent
Scraper test execution rules, output validation criteria, and report format for the Tester agent
BaseScraper contract, field rules, and Peatix-specific conventions for the Scraper Expert agent
Platform rules and field mappings for the 誠品生活日本橋 (eslite spectrum Nihonbashi) scraper
| name | fukuoka-now |
| description | Scraper rules for Fukuoka Now event calendar (fukuoka-now.com/en/event/) |
| applyTo | scraper/sources/fukuoka_now.py |
| Property | Value |
|---|---|
| Site URL | https://www.fukuoka-now.com/en/event/ |
| Rendering | Static HTML (WordPress) — no Playwright needed |
| Auth | None |
| Rate limit | None observed; 1 s delay between detail pages |
| Source name | fukuoka_now |
| Source ID format | fukuoka_now_{slug} (e.g. fukuoka_now_taiwan-matsuri-2026) |
| Original language | en (English-language media) |
| Region | 福岡市 / Fukuoka Prefecture |
| Event field | Source | Notes |
|---|---|---|
raw_title | .c-page-sub__content-title (detail page) | Falls back to .c-page-sub__guide-title (card) |
raw_description | .c-content-main p joined | Prepend 開催日時: YYYY年M月D日\n\n |
start_date | time[datetime] in .c-event-date-detail__start | ISO 8601 — always use detail page dates |
end_date | time[datetime] in .c-event-date-detail__end | Optional; falls back to start_date |
source_url | a[href] on the card | Full URL to detail page |
location_name | Extracted from description body | Line containing "City Hall", "Fureai", "Tenjin", etc. |
location_address | Same as location_name | No separate address field on Fukuoka Now |
Keywords applied to card title + tags + short description:
_TAIWAN_KEYWORDS = ["台湾", "Taiwan", "Taiwanese", "臺灣"]
Known annual Taiwan events on Fukuoka Now:
<time datetime="YYYY-MM-DD"> attribute — no parsing needed beyond datetime.strptime(dt_str, "%Y-%m-%d").time[datetime]. Always prefer the detail page (more reliable, includes end date).Page 1: https://www.fukuoka-now.com/en/event/
Page N: https://www.fukuoka-now.com/en/event/page/{N}/
li.c-page-sub__guide-item found.| Symptom | Likely cause | Fix |
|---|---|---|
| 0 events returned | Taiwan Matsuri season ended; no current Taiwan events | Normal — wait for next year's event |
Venue is None | Description doesn't contain venue keywords | Extend _extract_venue() venue keyword list |
| Dates all None | WordPress changed time[datetime] class names | Verify selector on .c-event-date-detail__start |
| 404 on pagination | Fewer than expected pages | Normal — stop condition already handled |