You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am new to the scrapers, but I have never successfully got "Scrape with fragment" to work with the SexLikeReal scraper.
It always gives the root URL without finding the URL for the specific scene and getting info for that scene.
Here is the part from SexLikeReal.yml that deals with the fragment:
sceneByFragment:
action: scrapeXPath
# url format: https://www.sexlikereal.com/scenes/{title}-{code}
# However, the url:
# https://www.sexlikereal.com/{code}
# will redirect to the full url so that is what we will use for scrapping
queryURL: https://www.sexlikereal.com/{filename}
queryURLReplace:
# filename format:
# SLR_{stufio:[^_]+}_{title:[^_]+}_{res:\d+p}_{code:\d+}_{vrtype}.{ext}
# vrtype: stuff we do not care about but could contain '_'
filename:
- regex: (?i)^SLR_.+_\d+p_(\d+)_.*$
with: $1
- regex: .*\.[^\.]+$ # if no id is found in the filename
with: # clear the filename so that it doesn't leak
scraper: sceneScraper
It seems that the regex that replaces filename with the studio code is not working.
The text was updated successfully, but these errors were encountered:
I'd love to make scrapers smarter so they can avoid the unnecessary request if the pattern doesn't match, but that would require some changes to the scraper engine
Does the studio have a new filename format? What's the name of the file you're attempting to scrape?
I am new to the scrapers, but I have never successfully got "Scrape with fragment" to work with the SexLikeReal scraper.
It always gives the root URL without finding the URL for the specific scene and getting info for that scene.
Here is the part from
SexLikeReal.yml
that deals with the fragment:It seems that the regex that replaces filename with the studio code is not working.
The text was updated successfully, but these errors were encountered: