Answers for "how to find pdf file in link beautifulsoup"

0

how to find pdf file in link beautifulsoup

# Find links to pdf files in HTML with BeautifulSoup

import urllib2
from bs4 import BeautifulSoup
my_url = 'http://slav0nic.org.ua/static/books/python/'
html=urllib2.urlopen(my_url).read()
sopa = BeautifulSoup(html)
current_link = ''
for link in sopa.find_all('a'):
  current_link = link.get('href')
    if current_link.endswith('pdf'):
      print('Tengo un pdf: ' + current_link)
Posted by: Guest on December-09-2020

Code answers related to "how to find pdf file in link beautifulsoup"

Python Answers by Framework

Browse Popular Code Answers by Language