skip to Main Content

Woocommerce – This website cannot be correctly scraped even with requets-html

i'm trying to get the prices displayed on : https://campervans.jeanlain.com/locations/?city-input=annecy&city-name=ANNECY&departure_date=06%2F01%2F2025&departure_time=11%3A00&return_date=10%2F01%2F2025&return_time=10%3A00 I tried with requests, and requests-html but neither works... Here is my code : from requests_html import HTMLSession session = HTMLSession() from bs4 import BeautifulSoup response = session.get('https://campervans.jeanlain.com/locations/?city-input=annecy&city-name=ANNECY&departure_date=06%2F01%2F2025&departure_time=11%3A00&return_date=10%2F01%2F2025&return_time=10%3A00') response.html.render() soup…

VIEW QUESTION

is there any other function to load json in python

import json response_message = { 'id': 'chatcmpl-9Iof6Uwf74o9N6uKsyxIVMFFIDJYC', 'object': 'chat.completion', 'created': 1714271676, 'model': 'gpt-3.5-turbo-0125', 'choices': [ { 'index': 0, 'message': { 'role': 'assistant', 'content': 'sfsdfs {n "plant": {n "light blocker": 1,n "give water": 0,n "spray water": 0,n "conditions": {n "humidity (%)":…

VIEW QUESTION
Back To Top
Search