How to upload ten million photos on Instagram or How to clone an Instagram account

I guess it might help someone so sharing it. I have used api by Lev Pasha, If you have ever used automation on Instagram, you have already used his code either directly or indirectly, which he have provided for free on GitHub.

You can use this tutorial for cloning complete Instagram account or you can be weird as you’re and upload millions of photo on Instagram.

Note: Please don’t violate anyone’s copyright by cloning accounts (This tutorial is for educational purpose only)

Simple Code in python for uploading one photo, millions of times on Instagram
(This will upload one photo in loop)

import time
import random
from InstagramAPI import InstagramAPI

InstagramAPI = InstagramAPI(“username”, “password”)
InstagramAPI.login()

def bulk_post():
for x in range(1,1000000):
photo_path = ‘C:/Path/of/theimage.jpg’
k=“”
xxx=InstagramAPI.uploadPhoto(photo_path, caption=k)
if (xxx==False):
love=str(x)
print(“posted “+love+” time”)
else:
print (“xxx not falseee not sure if posted”)
post=random.randrange(1,2)
time.sleep(post)

bulk_post()

For downloading content of whole account
Use this chrome extension

Code for uploading whole folder

#!/usr/bin/env python
#-- coding: utf-8 --

#Use text editor to edit the script and type in valid Instagram username/password

import os
import time
import random
from os import listdir
from os.path import isfile, join
from random import randint
from InstagramAPI import InstagramAPI

PhotoPath = “~/igphoto/” # Change Directory to Folder with Pics that you want to upload
#Change to your Photo Hashtag
IGCaption = “Your Caption Here #hashtag

os.chdir(PhotoPath)
ListFiles = [f for f in listdir(PhotoPath) if isfile(join(PhotoPath, f))]
print(“Total Photo in this folder:” + str(len(ListFiles)))

#Start Login and Uploading Photo
igapi = InstagramAPI(“login”, “password”)
igapi.login() # login

for i in range(len(ListFiles)):
photo = ListFiles[i]
print(“Progress :” + str([i + 1]) + " of " + str(len(ListFiles)))
print("Now Uploading this photo to instagram: " + photo)
igapi.uploadPhoto(photo, caption=IGCaption, upload_id=None)
# sleep for random between 1 - 5s
n = randint(1, 5)
print("Sleep upload for seconds: " + str(n))
time.sleep(n)

If this helped you PM me dank memes, thanks.
@Internet_lord

5 Likes

Didn’t Instagram confirm that they now check for duplicate content (as in duplicate images)? How does copying someone help now? Won’t the reused content be at a disadvantage right off the bat?

2 Likes

For Meme purpose, posting one million photos will be Dope.:100:

Almost 80% pages shares copied content (with credits)

I have bought a 20k dog page on Swapd, that account is getting 100k-200k video views on copied content, so i don’t think Instagram have any algorithm which decreases engagment of reused content.

2 Likes

Do you notice much increase of followers from doing this

Thanks for this tutorial!

thanks for this tutorial!

Interested in this

can you help me with this ?

i just recive too many erors on both codes multiple image upload and coding . can you please help me i will give some complimentary BTC

Thank you but just send memes instead!

The error you are facing is simply because of spacing issue! In python it is called “Intendation Error”, I have corrected it. :+1:

import random
from InstagramAPI import InstagramAPI

InstagramAPI = InstagramAPI("username", "password")
InstagramAPI.login() 

def bulk_post():
    for x in range(1,1000000):
        photo_path = 'C:/Your/photo/path.jpg'
        k="insert your caption here or remove it"
        xxx=InstagramAPI.uploadPhoto(photo_path, caption=k)
        if (xxx==False):
            love=str(x)
            print("posted "+love+" time")
        else:
            print ("xxx not falseee not sure if posted")
            post=random.randrange(1,2)
            time.sleep(post)

bulk_post()
1 Like

deleted

love is the folder that is with the pics

1 Like

by the way thank you for helping me , if this works , i would be the happiest

just 1 error but i really am new to programming so i can not fix it

1 Like

Please remove this image because it contains your username and password!

You have forgot the “=” in your code for file location.

what do you mean the code is same

the credentials on th

ITs there isnt it ?

PhotoPath = “C:/Users/tylkkieernbtyek/Desktop/love” # Change Directory to Folder with Pics that you want to upload
^
SyntaxError: invalid character in identifier

the “=” sign is there but still error

PMed and resolved! :slight_smile:

Tried running it but its kinda slow. Would take few months at speed im at. Any tips? Picture is 26Kb.

i know im too late but i tried the code today and it runs but it dosnt uploads the images on instagram account