Find class from web in python 3.6 not working -


please let me know how find class html code url: https://knoema.com/mig_unemp_gender_2015

from bs4 import beautifulsoup bs import requests  r = requests.get('https://knoema.com/mig_unemp_gender_2015') soup = bs(r.text, 'lxml') soup.findall('div', {'class': 'metadata-block validate'}) 

result giving blank.


Comments

Popular posts from this blog

Ansible warning on jinja2 braces on when -

Parsing a protocol message from Go by Java -

html - How to custom Bootstrap grid height? -