text = zaprosi['items']
print(", ".join(repr(e) for e in text))
Проще говоря, как делать кастомные прошивки?
$path_to_file = 'file1.html';
$new_file = 'file2.html';
$folder = 'myfolder';
$file_contents = file_get_contents($path_to_file);
$file_contents = str_replace("текст","текст2",$file_contents);
if (!file_exists($folder)) {
mkdir($folder, 0777, true); // создание папки, если ее нет
}
$save_to = $folder . '/' . $new_file; // соединяем 2 переменных папка + / + файл
file_put_contents($save_to,$file_contents);
import requests
r = requests.get('https://ramziv.com/ip',
proxies=dict(http='socks5://104.248.63.15:30588',
https='socks5://104.248.63.15:30588')).text
print(r)
Из документации:
https://docs.python.org/3/tutorial/interpreter.htm...