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
e-commerce management system in java Introduction The e-commerce management system is a GUI-based desktop application designed using Java swing in Netbean IDE. …
time table generator in java introduction The Time Table Generator is a Java utility that helps educational institutions automatically create class schedules …
crime record management system in java introduction The Crime Record Management System is a secure and systematic way of maintaining criminal and …
car rental system in java(GUI swing) introduction The Car Rental System is a Java application tailored for vehicle rental agencies. It allows …
food delivery management system in java introduction This Food Delivery Management System helps restaurants manage customer orders, menus, deliveries, and billing using …
online course registration in java introduction The Online Course Registration System allows students to enroll in courses using a Java application with …