Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Scrap Yahoo Finance using BS4
#8
see: https://python-forum.io/Thread-Web-Scraping-part-1
and
https://python-forum.io/Thread-Web-Scraping-part-2

also take a look at: https://gist.github.com/scrapehero/516fc...d41a69b496
which does it all using lxml

but best to use Buran's suggestion
you can fetch the json data with requests, then to load simple as
import json

with open(filename) as fp:
    mydata = json.load(fp)
Reply


Messages In This Thread
Scrap Yahoo Finance using BS4 - by mr_byte31 - Aug-23-2018, 08:53 AM
RE: Scrap Yahoo Finance using BS4 - by buran - Aug-23-2018, 10:48 AM
RE: Scrap Yahoo Finance using BS4 - by mr_byte31 - Aug-23-2018, 11:04 AM
RE: Scrap Yahoo Finance using BS4 - by Larz60+ - Aug-23-2018, 05:47 PM
RE: Scrap Yahoo Finance using BS4 - by buran - Aug-23-2018, 06:16 PM
RE: Scrap Yahoo Finance using BS4 - by mr_byte31 - Aug-24-2018, 09:23 AM
RE: Scrap Yahoo Finance using BS4 - by Larz60+ - Aug-23-2018, 08:41 PM
RE: Scrap Yahoo Finance using BS4 - by Larz60+ - Aug-24-2018, 02:50 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Web scrap --Need help Lizardpython 4 1,031 Oct-01-2023, 11:37 AM
Last Post: Lizardpython
  I tried every way to scrap morningstar financials data without success so far sparkt 2 8,269 Oct-20-2020, 05:43 PM
Last Post: sparkt
  Web Scraping with Yahoo Finance miloellison 1 2,068 Jul-03-2020, 11:12 PM
Last Post: Larz60+
  Web scrap multiple pages anilacem_302 3 3,851 Jul-01-2020, 07:50 PM
Last Post: mlieqo
  Need logic on how to scrap 100K URLs goodmind 2 2,637 Jun-29-2020, 09:53 AM
Last Post: goodmind
  getting financial data from yahoo finance asiaphone12 7 6,998 Jun-15-2020, 05:49 AM
Last Post: mick_g
  Django finance tracker mkb3112 1 1,955 Apr-04-2020, 01:21 PM
Last Post: leeacto
  Scrap a dynamic span hefaz 0 2,700 Mar-07-2020, 02:56 PM
Last Post: hefaz
  scrap by defining 3 functions zarize 0 1,863 Feb-18-2020, 03:55 PM
Last Post: zarize
  Skipping anti-scrap zarize 0 1,886 Jan-17-2020, 11:51 AM
Last Post: zarize

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020