Get Instagram Account Details using Python With Source Code

Introduction :
Hello Curious Coders,
In this Project we are going to fetch the details of an Instagram Account. There is pre defined package in python named instaloader which is going to allow us to scrape through the instagram account of someone. Let’s get into it…..
Source Code :
Get Discount on Top Educational Courses
# Import instaloader package
import instaloader
# creating an Instaloader() object
ig=instaloader.Instaloader()
# Taking the instagram username as input from user
usrname=input("Enter username:")
#Fetching the details of provided useraname using instaloder object
profile=instaloader.Profile.from_username(ig.context, usrname)
# Printing the fetched details and storing the profile pic of that account
print("Username: ", profile.username)
print("Number of Posts Uploaded: ", profile.mediacount)
print(profile.username+" is having " + str(profile.followers)+' followers.')
print(profile.username+" is following " + str(profile.followees)+' people')
print("Bio: ", profile.biography)
instaloader.Instaloader().download_profile(usrname,profile_pic_only=True)
Code Explanation :
- Initially installed the instaloader package from cmd using command“pip install instaloader”
- We imported the required package instaloader
- Next we created an instaloader object
- Later we acquired username from the user using input() function
- Then we fetched all the details of the instagram user using Profile.from_username() method of instaloader package.
- Finally displayed all the fetched results on to the console.
Output :

*The Profile pic is selected in the same folder where your python file is saved in the folder which is same as user name on your system as follows….

Find More Projects
how to create a video background with html CSS JavaScript Introduction Hello friends, you all are welcome to today’s new blog post. …
Auto Text Effect Animation Using Html CSS & JavaScript Introduction Hello friends, welcome to today’s new blog post. Today we have created …
Windows 12 Notepad Using Python Introduction: In this article, we will create a Windows 12 Notepad using Python. If you are a …
Animated Search Bar using Html CSS And JavaScript Introduction Hello friends, all of you developers are welcome to today’s beautiful blog post. …
Best Quiz Game Using HTML CSS And JavaScript Introduction Hello coders, welcome to another new blog. Today in this article we’ll learn …
Tower Blocks Game Using HTML CSS And JavaScript Introduction Hello coders, welcome to another new blog. Today in this blog we’ll learn …