Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 21 additions & 17 deletions config/zurich.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ scrapers:
count: 1

- name: ElLokal
url: "http://www.ellokal.ch/?lang=de&details=9"
item: "#maincontent > .commingupEventsList_0,.commingupEventsList_1"
url: "https://www.ellokal.ch/vorschau"
item: "tr.wixui-table__row"
fields:
- name: "location"
value: "El Lokal"
Expand All @@ -207,40 +207,44 @@ scrapers:
- name: "type"
value: "concert"
- name: "sourceUrl"
value: "http://www.ellokal.ch/?lang=de&details=9"
value: "http://www.ellokal.ch/"
- name: "title"
location:
selector: ".commingupEventsList_block5 a"
- name: "comment"
selector: "td a div"
- name: "url"
type: "url"
location:
selector: ".concertStyleNew .concertDetails"
selector: "td a"
- name: "imageUrl"
type: "url"
location:
selector: "div.apPOZK img"
attr: src
on_subpage: "url"
can_be_empty: true
- name: "url"
type: "url"
- name: "comment"
location:
selector: ".commingupEventsList_block5 a"
selector: "span.wixui-rich-text__text"
all_nodes: true
on_subpage: "url"
can_be_empty: true
- name: "date"
type: "date"
components:
- covers:
day: true
location:
selector: ".commingupEventsList_block2"
layout: ["02. "]
- covers:
month: true
year: true
location:
selector: ".commingupEventsList_block3"
layout: ["January"]
selector: "td:nth-child(2) div"
layout: ["02/01/2006"]
- covers:
time: true
location:
selector: ".commingupEventsList_block4"
selector: "td:nth-child(3) div div"
layout: ["15Uhr04"]
date_location: "Europe/Berlin"
date_language: "de_DE"
guess_year: true

- name: Mascotte
url: "https://www.mascotte.ch/nu/events/event_list_type/2"
Expand Down