Get Financial Data from Yahoo Finance with Python

priya raj
3 min readApr 17, 2021

--

In this article, we will see how to get financial data from Yahoo Finance using Python. We can retrieve company financial information (e.g. financial ratios), as well as historical market data by using this.

Installation:

Let us install them via pip commands

pip install yfinance

Once it is installed, we can import yfinance package in python code We need to pass as an argument of Ticker i.e. the ticker of the company

Note: A stock symbol or a ticker is a unique series of letters assigned to a security for trading purposes. For example:

Below are various programs which depict how to retrieve Financial Data from Yahoo Finance:

  1. For Amazon, it is “AMZN”
  2. For Facebook, it is “FB”
  3. For Google, it is “GOOGL”

Output :

Let us take the results for Facebook and hence using “FB”.

Output :

We can retrieve financial key metrics like Company Sector, Price Earnings Ratio, and Company Beta from the above dictionary of items easily. Let us see the below code.

Company Sector : Communication Services Price Earnings Ratio : 31.029732 Company Beta : 1.286265

Output :

Though we have retrieved few financial key metrics, as it is a dictionary value, we can split that by means of key-value pair.

Output :

We can retrieve historical market prices too and display them.

Even we can have the data for 1d, 5d, 1mo, 3mo, 6mo, 1y, 2y, 5y, 10y, and ytd.

Output :

Let us check out for 6 months

Output :

We have the flexibility to get historical market data for the provided start and end dates too.

Conclusion :

Python is a beautiful versatile language and come along with lot of necessary imports. We can rock with Python by means of its versatility.

Some of my technical articles can be seen at

GeeksForGeeks : https://auth.geeksforgeeks.org/user/priyarajtt/articles

LinkedIn : https://www.linkedin.com/in/priya-raj-29659a31/

Quora : https://www.quora.com/profile/Priyaraj-Thirukonda

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

priya raj
priya raj

Written by priya raj

Freelancer, Software Consultant. Having Industrial experience of around 12 + years of experience in the fields of Java, Android,SQL,MongoDB

No responses yet

Write a response