Answer the question
In order to leave comments, you need to log in
What are the mass mailing servers?
Hello! What are the services that provide smtp servers or something like that for mass email - advertising mailings with the ability to change ip, etc.?
Answer the question
In order to leave comments, you need to log in
In general, I solved this issue with an image jump like this:
import requests
from bs4 import BeautifulSoup
url='http://www.yarregion.ru/'
r=requests.get(url+'depts/dcul/default.aspx').text
dcul=BeautifulSoup(r)
img_news=dcul.find('div',{'id': 'WebPartWPQ3'}).find('img').get('src')
file=open('1.jpg', 'wb')
p=requests.get(url+img_news)
file.write(p.content)
file.close()
I'm not a magician, I'm just learning
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question