Skip to content

Coding Handwritten Notes Browse Here

CodewithCurious
  • Home
  • Projects
  • Ebooks
  • Blogs
  • Interview QnA
  • Home
  • Projects
  • Ebooks
  • Blogs
  • Interview QnA
Browse Handwritten Notes

Kodekolud coupon code
  • Python Handwritten Notes
  • Java Handwritten Notes
  • DSA Handwritten Notes
  • React Js Handwritten Notes
  • Browser All Handwritten Notes
Free Ebooks
  • Python Ebook
  • Java Ebook
  • Python Games Ebook
  • Interview QnA Ebook
  • Browse All Ebooks
Free Projects
  • Python Projects
  • Java Projects
  • C++ Projects
  • HTML CSS JS Projects
Free Ebooks
  • Python Ebook
  • Java Ebook
  • Python Games Ebook
  • Interview QnA Ebook
  • Browse All Ebooks

/ projects, Python Projects / By Other Authors

Get Instagram Account Details using Python With Source Code

Get Instagram Account Details using Python

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

Brand NameDiscount InformationCoupon Codes Link
Educative.io20% discount on Educative courses and plans
W3Schools20% discount on W3Schools courses
KodeKloud10% discount on KodeKloud courses and plans
GeeksforGeeks30% discount on GeeksforGeeks courses
Target Test Prep20% discount on Target Test Prep
Coding Ninjas₹5000 discount on Coding Ninjas courses
Skillshare40% discount on Skillshare
DataCamp50% discount on DataCamp
365 Data Science57% discount on 365 Data Science Plans
Get SmarterFlat 20% discount on Get Smarter courses
SmartKeedaFlat 40% discount on SmartKeeda courses
StackSocial20% discount on StackSocial 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 :

Get Instagram Account Details using Python

*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….

Profile Pic

Find More Projects

MathGenius Pro – AI-Powered Math Solver Using Python
MathGenius Pro – AI-Powered Math Solver Using Python

MathGenius Pro – AI-Powered Math Solver Using Python

Gaurav Sharma
•
June 15, 2025
•
projects, Python Projects

MathGenius Pro – AI-Powered Math Solver Using Python Introduction: From simple arithmetic to more complicated college-level subjects like integration, differentiation, algebra, matrices, …

CipherMaze: The Ultimate Code Cracking Quest Game Using Python
CipherMaze: The Ultimate Code Cracking Quest Game Using Python

CipherMaze: The Ultimate Code Cracking Quest Game Using Python

Gaurav Sharma
•
June 15, 2025
•
projects, Python Games

CipherMaze: The Ultimate Code Cracking Quest Game Using Python Introduction: You can make CipherMaze, a fun and brain-boosting puzzle game, with Python …

Warp Perspective Using Open CV Python
Warp Perspective Using Open CV Python

Warp Perspective Using Open CV Python

Gaurav Sharma
•
June 15, 2025
•
projects, Python Projects

Warp Perspective Using Open CV Python Introduction: In this article, we are going to see how to Create a Warp Perspective System …

Custom AI Story Generator With Emotion Control Using Python
Custom AI Story Generator With Emotion Control Using Python

Custom AI Story Generator With Emotion Control Using Python

Gaurav Sharma
•
June 15, 2025
•
projects, Python Projects

Custom AI Story Generator With Emotion Control Using Python Introduction: With the help of this AI-powered story generator, users can compose stories …

AI Powered PDF Summarizer Using Python
AI Powered PDF Summarizer Using Python

AI Powered PDF Summarizer Using Python

Gaurav Sharma
•
June 15, 2025
•
projects, Python Projects

AI Powered PDF Summarizer Using Python Introduction: AI-Powered PDF Summarizer is a tool that extracts and summarizes research papers from ArXiv PDFs using Ollama (Gemma 3 LLM). The …

AI Based Career Path Recommender Using Python
AI Based Career Path Recommender Using Python

AI Based Career Path Recommender Using Python

Gaurav Sharma
•
June 15, 2025
•
projects, Python Projects

AI Based Career Path Recommender Using Python Introduction: One of the most significant and frequently perplexing decisions in a person’s life is …

1 2 3 … 5 Next »
Get Huge Discounts
pecial Halloween Sale: Flat 30% Discount on GMAT, GRE, SAT, and EA Plans!
educative coupon code
More Python Projects

MathGenius Pro – AI-Powered Math Solver Using Python

Warp Perspective Using Open CV Python

Custom AI Story Generator With Emotion Control Using Python

AI Powered PDF Summarizer Using Python

AI Based Career Path Recommender Using Python

AI Virtual Painter Using Python Using OpenCV And Python Graphics

TUI Expense Tracker Using Textual in Python

A Django-Based Gym Management System

Windows 12 Notepad Using Python

Typing Speed Test Game using Python

Inventory Management System Using Python

Drawing Chhatrapati Shivaji Maharaj Using Python using turtle Module

Bank Management System Using Python Django

Pharmacy Management System Using Python Django

Complain Management using Python With a Graphical User Interface (GUI)

COVID 19 Hospital Management Using Python | Covid 19 Hospital management using Django Graphical User Interface covid 19 hospital management django

Drawing Ganesha Using Python Turtle Graphics [Drawing Ganpati Using Python]

Contact Management System In PYTHON with complete source code

KBC Game Using Python With Source Code

Scraping Data From Google Maps Python With Source Code

Building A WhatsApp Bot Using Python With Source Code

Create a Screen Recorder Using Python

Create a Telegram Bot Using Python With Source Code

File Sharing App Using Python With Source Code

21 Number Game Using Python With Source Code

Automated Instagram Message Sending Using Python With Source Code

Joining Multiple Images To Display Using Open CV Python With Source Code

QR Code & Bar Code Detection Using Open CV Python With Source Code

Object Tracking Using Open CV Python With Source Code

Resume Analyzer using Python With Source Code

EMI Calculator Using Python With Source Code

Typing Game Using Python With Source Code

Tiles– A Sliding Puzzle Game in Python With Source Code

Spaceship Game Using Python With Source Code

Simon Says– Classic Memory Puzzle Game Using Python With Source Code

Memory Game Using Python: A Card Matching Game With Source Code

Optical Illusion Game with Python With Source Code

Creating a Connect Four Game Using Python With Source Code

Cannon Game Using Python With Source Code

Build Your Own Paint App with Python With Source Code

Pacman Game with Python With Source

Blackjack Game Using Python With Source Code

Aeroblasters: 2D Vertical Plane Shooter Game Using Python and Pygame With Source Code

A Simple Maze Drawing Game in Python With Source Code

OMR MCǪ Automated Grading Using Open CV Python With Source Code

Shape Detection Using Open CV Python With Source Code

Text Detection Using Open CV Python With Source Code

Object Measurement Using Open CV Python With Source Code

Realtime Colour Detection Using Open CV Python With Source Code

Volume & Brightness Control Using Open CV Python

Vehicle Speed Estimation Using Open CV Python With Source Code

CAPTCHA Generator Using Python With Source Code

Google Search Clone using Python With Source Code

Hostel Management System Using Python with source code Python Graphical Interface Tkinter With Source Code

Contra Game Using Python Pygame With Source Code

Restaurant Billing System Using Python with Tkinter Module With GUI With Source Code

Jungle Dash Game Using Python With source code using Pygame

Tetris Game using Python pygame with source code

Super Mario Game using Python with source code

Library Management System Using Python with Source Code using Python GUI Tkinter (Graphical User Interface)

Space Shooter Game Using Python With Source Code

Hotel Management System Using Python with source code using Graphical User interface GUI

Student Management System using Python with Source Code

Billing Software Using Python With Source Code

Hospital Management Using Python with source code

2048 Game Using Python Tkitner With Source Code

Valentine Day Project using Python Turtle With Source Code

Drawing Rose Using Python Turtle with Python Turtle Graphics With Source Code

Binary to Decimal & Decimal to Binary Converter Using Python With Source Code

Game Building Using Python – Rock, Paper and Scissor

Weather App using Django With Source Code

Make an Indian Flag using Turtle Python With Source COde

Notepad Using Python Tkinter With Source Code

Get Info of Phone Number using Python With Source Code

Car Racing Game Using Python With Source Code

Convert Image to PDF Using Python GUI With Source Code

Library Management using Python GUI With Source Code

Creating GUI Piano Using Python With Source Code

Get Instagram Account Details using Python With Source Code

Drawing Pikachu Using Python With Source Code

Building Our Own ChatGPT using Python With Source Code

Detect Plagiarism in files using Python With Source Code

Language Detection of a Sentence using Python With Source Code

Black and White to Colour Images using Python With Source Code

Photo Collage Maker using Python With Source Code

Word Cloud Using Python Language

Birthday Wishes Using Python With Source Code

OTP Verification using Python With Source Code

Quiz Application Using Python With Source Code

BMI Calculator using python With source Code

Scientific calculator using Python With Source Code

Draw Doraemon Using Python With Source Code

Convert Text to speech using python With source Code

GUI alarm Clock Using Python With Source Code

Flappy Bird Game Using Python With Source Code

Hangman Game using python With Source Code

Sudoku Game Using Python With Source Code

GUI Based Internet Speed Test Using Python With Source Code

Ping pong game using python With Source Code

Snake Game Using Python With Source Code

Creating A WaterMark on Image using OpenCV with Source Code

Radha Krishna Drawing using Python with Source Code

GUI Digital Clock Using Python with Source Code

GUI Stopwatch using Python with Source Code

Turtle Patterns in Python with Source Code

Rock Paper Scissor Game using Python with Source Code

Drawing Patterns Using Python Turtle with Source Code

Convert Image Into Sketch Using Python

Send WhatsApp Messages Using Python with Source Code

Find Wi-fi Passwords using Python with Source Code

skillshare coupon code
Get Discount on Top EdTech Compnies
  • 45% Discount on SkillShare
  • 10% Discount on KodeKoloud
  • 30% Discount on AlmaBetter
  • 10% Discount on Coding Ninjas
  • Upto 80% Discount on GeeksforGeeks
← Previous Post
Next Post →
CodeWithCurious Let's Learn Together !

CodeWithCurious is a Best Place to Learn & grow your Career in IT sector. Best Content on the latest technology in including C, C++, Java, Python, Sql, Web development & Interview Preparation Material free of cost.

Info

  • Home
  • Projects
  • E books
  • Blogs
  • About Us

Support

  • Contact us
  • Privacy Policy
  • Terms & Conditions
  • Affiliate Discloser

Follow us for more!

© 2025 All Rights Reserved CodeWithCurious