Data that you want to scrape is dynamically generated. You can make direct request to API to get those values:
url = 'https://api.coinbase.com/v2/prices/USD/spot?'
response = requests.get(url).json()
print(response)
Output:
{'data': [{'currency': 'USD', 'base': 'BTC', 'amount': '7590.01'}, {'currency':
'USD', 'base': 'ETH', 'amount': '296.86'}, {'currency': 'USD', 'base': 'LTC', 'amount': '54.59'}]}
To get required value:
print(response['data'][0]['amount'])
Output:
'7590.01'