You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
839 B
Python
32 lines
839 B
Python
import requests
|
|
|
|
url = 'https://www.save-free.com/process'
|
|
|
|
data = {
|
|
'instagram_url': 'natahalieeee',
|
|
'type': 'profile',
|
|
'resource': 'save'
|
|
}
|
|
|
|
zoom_data = {
|
|
'instagram_url': 'natahalieeee',
|
|
'type': 'profile',
|
|
'resource': 'zoom'
|
|
}
|
|
|
|
headers = {
|
|
'User-Agent' : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36',
|
|
'Referer' : 'https://www.save-free.com/profile-downloader/',
|
|
}
|
|
|
|
proxies={
|
|
"http": "http://yehyuxsl-rotate:4tl5bvrwkz5e@p.webshare.io:80/",
|
|
"https": "http://yehyuxsl-rotate:4tl5bvrwkz5e@p.webshare.io:80/"
|
|
}
|
|
|
|
response = requests.post(url, data=data, headers=headers)
|
|
|
|
response = requests.post(url, data=zoom_data, headers=headers)
|
|
|
|
with open('image.jpg', 'wb') as f:
|
|
f.write(response.content) |