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 :
# 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
Build a Quiz Game Using HTML CSS and JavaScript Introduction Hello coders, you might have played various games, but were you aware …
Emoji Catcher Game Using HTML CSS and JavaScript Introduction Hello Coders, Welcome to another new blog. In this article we’ve made a …
Typing Challenge Using HTML CSS and JavaScript Introduction Hello friends, all you developer friends are welcome to our new project. If you …
Breakout Game Using HTML CSS and JavaScript With Source Code Introduction Hello friends, welcome to today’s new blog post. All of you …
Digital and Analog Clock using HTML CSS and JavaScript Introduction : This project is a digital clock and stopwatch system, which allows …
Coffee Shop Website using HTML, CSS & JavaScript Introduction : This project is a website for coffee house business. It uses HTML …