원클릭으로
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 |