How to create a stock quote fetching app in python

后端 未结 8 862
闹比i
闹比i 2020-12-07 22:05

I\'m quite new to programming in Python.

I want to make an application which will fetch stock prices from google finance. One exam

8条回答
  •  忘掉有多难
    2020-12-07 22:31

    http://docs.python.org/library/urllib.html for fetching arbitrary URLs.

    Apart from that you should better look a some web service providing the data in JSON format.

    Otherwise you have to implement parsing etc. on your own.

    Screenscrapping yahoo.com for getting the stocks is unlikely the right road to success.

提交回复
热议问题