Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some requested sites #96

Merged
merged 5 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
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
19 changes: 19 additions & 0 deletions src/scrappers/joinef-portfolio.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
url: 'https://www.joinef.com/portfolio/*'
header: Portfolio
listElementsQuery: .tile--company--row
elementParser:
- title: Name
query: .tile__name
type: text

- title: Description
query: .tile__description
type: text

- title: Tags
query: .tile__tags
type: text

- title: Link
query: .tile__link
type: link
15 changes: 15 additions & 0 deletions src/scrappers/joinef-posts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
url: 'https://www.joinef.com/posts/'
header: Posts
listElementsQuery: article
elementParser:
- title: Title
query: .tile__link
type: text

- title: Categories
query: .tile__categories
type: text

- title: Link
query: .tile__link
type: link
22 changes: 22 additions & 0 deletions src/scrappers/milanuncios.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
url: https://www.milanuncios.com/*
listElementsQuery: article
elementParser:
- title: Title
query: .ma-AdCardListingV2-TitleLink
type: text

- title: Price
query: .ma-AdPrice-value
type: text

- titlte: Address
query: .ma-AdLocation-text
type: text

- title: Details
query: .ma-AdCardV2-description
type: text

- title: Link
query: .ma-AdCardListingV2-TitleLink
type: link
15 changes: 15 additions & 0 deletions src/scrappers/notion.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
url: https://www.notion.so*
header: Templates
listElementsQuery: .template-grid > section
elementParser:
- title: Title
query: '[class*="UserBaseInfo_textInfoContainer"]'
type: text

- title: Userbase rights
query: '[class*="templatePreview_userBaseRight"]'
type: text

- title: Link
query: '[class*="DynamicModal_trigger"]'
type: link
18 changes: 18 additions & 0 deletions src/scrappers/vrbo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
url: https://www.vrbo.com*
listElementsQuery: '[data-stid="lodging-card-responsive"]'
elementParser:
- title: Title
query: h3.uitk-heading
type: text

- title: Description
query: .uitk-text
type: text

- title: Price information
query: '[data-test-id="price-summary"]'
type: text

- title: Link
query: '[data-stid="open-hotel-information"]'
type: link
Loading