Profile Updater \ Mass Image Upload Bot?

thedoc2k

Newbie
Joined
Oct 17, 2012
Messages
3
Reaction score
0
Been reading these forums for years.. never posted anything to date.. thought this would be the best place to ask this question..

I have about 1000 IG Accounts. None of them have any info in them.. I need a bot to be able to do the following (easier then i am doing it now)


  • Load all my accounts
  • Allow me to assign my private proxies
  • have a MASS Image Upload feature which would allow me to upload 5-10 random images from my images folder (which contains approx 500,000 images) to each and every account
  • must have a Profile Updater for all my accounts as well.. Mainly the ability to upload 1 profile picture to each and every account from my folder of scraped profile pics. ( the ability to update the other profile fields would be nice too)

Now before this thread gets flooded with "Hire a programmer to make one for you", ill just save you some time and say im not doing that.. I know bots exist that do what im asking already. Im just trying to track down one that works and people recommend.

Oh one more thing.. I have tried CarbonGram already.. It claimed it can do all im asking.. well bot is complete junk.. 80% of the features dont work, absolutely NO support, and buggy as hell (Crashes constantly). So just an FYI for anyone looking for something like what im asking for, Stay away from CarbonGram.. ekk..

Thanks in advance guys
 
Everyone should learn to code! :)

Code:
from lib.social.Instagram import Instagram
import os
import random
pic_folder = "/pics/"
account_file = "accounts.txt"
bio_file = "biographies.txt"
if __name__ == "__main__":
    accounts = open(account_file,"r").read().split("\n")
    bios = open(bio_file,"r").read().split("\n")
    for account in accounts:
        account = account.split(":")
        username = account[0]
        password = account[1]
        instagram = Instagram()
        instagram.generateDevice()
        if instagram.login(username, password):
            print "Logged in to account %s - UserID is: %s" % (username, instagram.user_id)
            photo = random.choice(os.listdir("%s*.jpg" % pic_folder)
            if instagram.uploadPhoto("%s%s" % (pic_folder,photo)):
                print "Uploaded photo to the account."
                bio = random.choice(bios)
                if instagram.editBio(bio):
                    print "Updated the bio"
                else:
                    print "There was an editing the bio for this account: %s" % instagram.getLastError()
            else:
                print "There was an error uploading or configuring the photo: %s" % instagram.getLastError()
        else:
            print "There was an error logging in to Instagram: %s" % instagram.getLastError()
 
Igerslike has a profile updater but it would be expensive to manage 1000 accounts, the other bots doesn't have a profile updater i think.
 
Jaleninc sorry I can't reply to PMs until I have 15 posts for some reason. Shoot me an email at jonclose at gmail
 
thanks codingandstuff.. I do somewhat understand what's happening with your code, but I must admit coding and its application isn't my strong suit
 
i just coded one with image upload feature wanna try PM me
or skype : rvi_kmr_rk
 
Back
Top