How do I display all contents contained in a td tag from a table on a website using python? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How do I display all contents contained in a td tag from a table on a website using python?

I'm working on a project. I'm trying to display the contents of the website on Graphical User Interface.

18th Oct 2018, 6:06 PM
Anfernee Skinner
Anfernee Skinner - avatar
1 Answer
+ 2
I would suggest scraping the data with library's such as urllib2 and BeautifulSoup. You can then use the aggregated data to create a graphic using plotly. See links for documentation and usage of the listed libraries. https://docs.python.org/2/library/urllib2.html https://www.crummy.com/software/BeautifulSoup/bs3/documentation.html https://plot.ly/python/table/
1st Nov 2018, 10:48 PM
Clinton Stanley
Clinton Stanley - avatar