requests
import threading
from tkinter import *
def requstData(url):
payload = {}
headers = {
'authority': 'uk.investing.com',
'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7',
'accept-language': 'ru-RU,ru;q=0.9,en-US;q=0.8,en;q=0.7',
'sec-ch-ua': '"Not)A;Brand";v="24", "Chromium";v="116"',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '"Linux"',
'sec-fetch-dest': 'document',
'sec-fetch-mode': 'navigate',
'sec-fetch-site': 'none',
'sec-fetch-user': '?1',
'upgrade-insecure-requests': '1',
'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'
}
page = requests.request("GET", url, headers=headers, data=payload)
print(page)
print(page.status_code)
root.label_url = Label(root, text=url).pack()
root.label_code = Label(root, text=page.status_code).pack()
root = Tk()
root.title("test")
url = [
"https://uk.investing.com/currencies/eur-usd",
"https://uk.investing.com/currencies/jpy-usd",
"https://uk.investing.com/currencies/gbp-usd",
"https://uk.investing.com/currencies/chf-usd",
"https://uk.investing.com/crypto/bitcoin/btc-usd",
"https://uk.investing.com/crypto/bitcoin/eth-usd",
"https://uk.investing.com/crypto/bitcoin/xmr-usd",
"https://uk.investing.com/crypto/bitcoin/doge-usd"
]
for value in url:
thread = threading.Thread(target=requstData, args=[value])
thread.setDaemon(True)
thread.start()
root.mainloop()
requests возвращает не текст страницы а <Response [403]>
гуглил 403?
да я в курсе что это. Вопрос не в том.
ну мы не знаем почему этот код не работает на расбери, ты нам не предоставил никакой информации
так это только для байдена
а какая информация нужна? Код на ПК работает но именно на расбери это не работает.
Обсуждают сегодня