bs4 scraping: скачивайте изображения и сохраняйте их в локальной папке с нужным именем - PullRequest
0 голосов
/ 16 сентября 2018

У меня есть код, который печатает все image_url, которые я хочу скачать
Далее я хочу сохранить их в локальной папке с именем folder_name = scrap_images
с желаемым image_name = uni_name, которое также находится в выводе
Вы можете помочь мне.

response   = requests.get('https://www.eduvision.edu.pk/admissions.php? 
discipline_type=Social-Sciences&sub_level=7&city=&pageNo=2',headers=header)
soup       = BeautifulSoup(response.content, 'html.parser')
data=soup.findAll('div',attrs={'class':'col-lg-12 col-xs-12'})[:-1]
for d in data:
   uni_name,comma,city = (d.findAll('a')[1].text).partition(',')
   print(uni_name)
   admis_img = d.img['src']
   if(d.img['src']=="images_post/nust.jpg"):
       admis_img= "https://www.eduvision.edu.pk/"+d.img['src']
       print(admis_img)
   else:
       print(admis_img)

1 Ответ

0 голосов
/ 17 сентября 2018

Самый простой способ загрузки изображений с использованием python - это использование модуля запросов.

Подробнее об этом можно прочитать здесь , это поможет вам начать работу с ним, я прикрепилПример кода также для вас.

Вы также можете обратиться к этому ответу для лучшего понимания вашего запроса.

# importing the requests library 
import requests

`# api-endpoint 
URL = "http://maps.googleapis.com/maps/api/geocode/json"`

# location given here 
location = "ImageKit"

# defining a params dict for the parameters to be sent to the API 
PARAMS = {'address':location}

# sending get request and saving the response as response object 
r = requests.get(url = URL, params = PARAMS) 

# extracting data in json format 
data = r.json() 


# extracting latitude, longitude and formatted address  
# of the first matching location 
latitude = data['results'][0]['geometry']['location']['lat'] 
longitude = data['results'][0]['geometry']['location']['lng'] 
formatted_address = data['results'][0]['formatted_address'] 

# printing the output 
print("Latitude:%s\nLongitude:%s\nFormatted Address:%s"
      %(latitude, longitude,formatted_address)) 
...