I would like to ask how to fix random currency bacause iam trying to make price checker but when i run it for the firt time it gave me the currency in swedish crowns and the few minutes later it gave me different currency i tried accept language and it worked like only 10 minutes and then it changed again and again is there any way to fix it? There is the code
from bs4 import BeautifulSoup
import requests
url = "https://steamcommunity.com/market/listings/730/USP-S%20%7C%20Blueprint%20%28Factory%20New%29"
headers = {"Accept-Language": "en-US,en;q=0.5"}
r = requests.get(url, headers=headers)
html_text = requests .get('https://steamcommunity.com/market/listings/730/USP-S%20%7C%20Blueprint%20%28Factory%20New%29').text
soup = BeautifulSoup(html_text, 'lxml')
skin_name = soup.find('span', class_ = 'market_listing_item_name').text
sm = soup.find('span', class_ = 'market_listing_price').text.replace(' ','SM ')
print(skin_name, sm)