Код: Выделить всё
[img]/wp-content/themes/ultimate-conversion/assets/img/download.svg[/img]
Open
Код: Выделить всё
import requests
from bs4 import BeautifulSoup
from soup2dict import convert
page = requests.get(url)
soup = BeautifulSoup(page.content, 'html.parser')
tt = convert(soup)
# navigate tt to get the keys ct, iv, s
ct, iv, s = get_values(tt) # no help needed here
# decode the url
Подробнее здесь: [url]https://stackoverflow.com/questions/78186654/how-to-decode-url-that-is-encrypted-by-javascript-function[/url]