Skip to content

Commit

Permalink
Fix studio code regex for Staxus
Browse files Browse the repository at this point in the history
  • Loading branch information
Maista6969 committed Dec 14, 2024
1 parent 6d1d498 commit 3f7a474
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions scrapers/Staxus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ xPathScrapers:
selector: //a[contains(@class,"option_button")]/@href
postProcess:
- replace:
- regex: .+id\=(\d+)
- regex: .+id\=(\d+).*
with: $1
Details:
selector: //span[contains(@class,"update_description")]/text()
Expand All @@ -42,10 +42,10 @@ xPathScrapers:
selector: //div[contains(@class,"galleryTitle")]/text()
postProcess:
- replace:
- regex: ^
with: https://staxus.com/trial/search.php?query=
- regex: \s
with: +
- regex: ^
with: https://staxus.com/trial/search.php?query=
- regex: \s
with: +
- subScraper:
selector: //div[@class="screenshotWrapper"][1]/a/@style
postProcess:
Expand All @@ -63,26 +63,26 @@ xPathScrapers:
//div[@class="cell_top cell_thumb"]/img/@src0_3x | //div[@class="cell_top cell_thumb"]/img/@src0
postProcess:
- replace:
- regex: ^
with: https://staxus.com
- regex: ^
with: https://staxus.com
Gender:
fixed: Male
Height:
selector: >
//div[@class="model_bio"]//b[contains(text(),'Height')]/../following-sibling::div/text()
postProcess:
- replace:
- regex: '[^0-9.]'
with: ""
- regex: "[^0-9.]"
with: ""
PenisLength:
selector: >
//div[@class="model_bio"]//b[contains(text(),'Measurements')]/../following-sibling::div/text()
postProcess:
- replace:
- regex: '\,.+'
with: ""
- regex: '[^0-9.]'
with: ""
- regex: '\,.+'
with: ""
- regex: "[^0-9.]"
with: ""
Birthdate:
selector: >
//div[@class="model_bio"]//b[contains(text(),'Age')]/../following-sibling::div/text()
Expand Down

0 comments on commit 3f7a474

Please sign in to comment.