-
Notifications
You must be signed in to change notification settings - Fork 60
/
igfi.py
648 lines (624 loc) Β· 28 KB
/
igfi.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
# -*- coding: utf-8 -*-
"""
Author: new92
Github: @new92
Leetcode: @new92
PyPI: @new92
IGFI is a python script for increasing the number of followers of an Instagram account.
*********IMPORTANT*********
User's login credentials (such as: username, password) will not be stored or saved !
Will be used only to increase the followers of the user's Instagram account
***************************
"""
try:
import sys
from time import sleep
if sys.version_info[0] < 3:
print("[β] Error ! IGFI requires Python 3 ! ")
sleep(1.3)
print("""[+] Instructions to download Python 3:
Linux: apt install python3
Windows: https://www.python.org/downloads/
MacOS: https://docs.python-guide.org/starting/install3/osx/""")
sleep(3)
print("[+] Please install Python 3 and then use IGFI β
")
sleep(1.2)
print("[+] Exiting...")
sleep(0.8)
quit(0)
import platform
from os import system
from rich.align import Align
from rich.table import Table
from rich.live import Live
from rich.console import Console
console = Console()
mods = ['sys', 'time', 'rich', 'platform', 'os', 'logging', 'instagrapi', 'requests', 'instaloader', 'argparse', 'colorama']
with console.status('[bold dark_orange]Loading module...') as status:
for mod in mods:
sleep(0.8)
console.log(f'[[bold red]{mod}[/]] => [bold dark_green]ok[/]')
import os
import instagrapi
import requests
import logging
import instaloader
import argparse
import ctypes
from colorama import init, Fore
except (ImportError, ModuleNotFoundError):
print("[!] WARNING: Not all packages used in IGFI have been installed !")
sleep(1)
print("[+] Ignoring warning...")
sleep(0.5)
if sys.platform.startswith('linux') or sys.platform == 'darwin':
if os.geteuid():
print("[β] Root user not detected !")
sleep(2)
print("[+] Attempting to enable root user...")
sleep(1)
os.execvp("sudo", ["sudo", sys.executable] + sys.argv)
print("[β] Done.")
sleep(0.6)
print("[+] Loading required modules...")
sleep(0.4)
system("sudo pip install -r ./../requirements.txt" if sys.platform.startswith('linux') else "python -m pip install ./../requirements.txt")
elif platform.system() == 'Windows':
if not ctypes.windll.shell32.IsUserAnAdmin():
print("[β] Root user not detected !")
sleep(2)
print("[+] Attempting to enable root user...")
sleep(1)
ctypes.windll.shell32.ShellExecuteW(None, "runas", sys.executable, " ".join(sys.argv), None, 1)
if not ctypes.windll.shell32.IsUserAnAdmin():
print("[+] Root user permission denied.")
sleep(1)
print("[+] Exiting...")
quit()
print("[β] Done.")
sleep(0.6)
print("[+] Loading required modules...")
sleep(0.4)
system("pip install -r ./../requirements.txt")
init(autoreset=True)
RED = Fore.RED
GREEN = Fore.GREEN
YELLOW = Fore.YELLOW
def clear():
system('cls' if platform.system() == 'Windows' else 'clear')
sleep(0.8)
clear()
console.print("[bold green][β] Successfully loaded modules.")
sleep(1.1)
clear()
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'
}
js = {}
resp = requests.get('https://api.github.com/repos/new92/IGFI', headers=headers)
if resp.status_code == 200:
js = resp.json()
def ScriptInfo():
rest = requests.get('https://api.github.com/repos/new92/IGFI/contributors', headers=headers)
contribs = []
if rest.status_code == 200:
jsn = rest.json()
contribs = [jsn[i]['login'] for i in range(len(jsn))]
lang = requests.get('https://api.github.com/repos/new92/IGFI/languages', headers=headers)
languages = list(lang.json().keys()) if lang.status_code == 200 else []
print(f"{YELLOW}[+] Author | {js['owner']['login']}")
print(f"{YELLOW}[+] Github | @{js['owner']['login']}")
print(f"{YELLOW}[+] Leetcode | @{js['owner']['login']}")
print(f"{YELLOW}[+] PyPI | @{js['owner']['login']}")
print(f"{YELLOW}[+] Contributors | {contribs}")
print(f"{YELLOW}[+] License | {js['license']['spdx_id']}")
print(f"{YELLOW}[+] Programming language(s) used | {languages}")
print(f"{YELLOW}[+] Script's name | {js['name']}")
print(f"{YELLOW}[+] Latest update | {js['updated_at']}")
print(f"{YELLOW}[+] File size | {os.stat(__file__).st_size} bytes")
print(f"{YELLOW}[+] File path | {os.path.abspath(__file__)}")
print(f"{YELLOW}|======|GITHUB REPO INFO|======|")
print(f"{YELLOW}[+] Repo name | {js['name']}")
print(f"{YELLOW}[+] Description | {js['description']}")
print(f"{YELLOW}[+] Repo URL | {js['html_url']}")
print(f"{YELLOW}[+] Stars | {js['stargazers_count']}")
print(f"{YELLOW}[+] Forks | {js['forks']}")
print(f"{YELLOW}[+] Watchers | {js['subscribers_count']}")
print(f"{YELLOW}[+] Open issues | {js['open_issues_count']}")
def fpath(fname: str):
for root, dirs, files in os.walk('/'):
if fname in dirs:
return os.path.abspath(os.path.join(root, fname))
def Uninstall() -> str:
def rmdir(dire):
DIRS = []
for root, dirs, files in os.walk(dire):
for file in files:
os.remove(os.path.join(root,file))
for dir in dirs:
DIRS.append(os.path.join(root,dir))
for i in range(len(DIRS)):
os.rmdir(DIRS[i])
os.rmdir(dire)
rmdir(fpath('IGFI'))
return f"{GREEN}[β] Files and dependencies uninstalled successfully !"
TABLE = [
[
"[b white]Author[/]: [i light_green]new92[/]",
"[green]https://new92.github.io/[/]"
],
[
"[b white]Github[/]: [i light_green]@new92[/]",
"[green]https://github.com/new92[/]"
],
[
"[b white]Leetcode[/]: [i light_green]@new92[/]",
"[green]https://leetcode.com/new92[/]"
],
[
"[b white]PyPI[/]: [i light_green]@new92[/]",
"[green]https://pypi.org/user/new92[/]"
]
]
console = Console()
table = Table(show_footer=False)
centered = Align.center(table)
def banner() -> str:
console.print("""[bold yellow]
βββββββββββββββββββββββ
βββββββββββββββββββββββ
βββββββββββββββββββββββ
βββββββββββββββββββββββ
βββββββββββββββββββββββ
βββββββββββββββββββββββ
[/]""", justify='center')
def nums():
console.print("[bold yellow][1] Increase followers[/]")
console.print("[bold yellow][2] Show IGFI's info[/]")
console.print("[bold yellow][3] Clear log[/]")
console.print("[bold yellow][4] Uninstall IGFI[/]")
console.print("[bold yellow][5] Exit[/]")
def checkUser(username:str) -> bool:
return username in ['', ' '] or len(username) > 30 or requests.get(f"https://www.instagram.com/{username}/", allow_redirects=False).status_code != 200
def main(username: str, password: str, session: str):
banner()
print("\n")
with Live(centered, console=console, screen=False):
table.add_column('Socials', no_wrap=False)
table.add_column('Url', no_wrap=False)
for row in TABLE:
table.add_row(*row)
print("\n")
console.print(f"[bold yellow][+] {js['description']}" if js else 'IGFI is a python script for increasing the number of followers of an Instagram account.')
print("\n")
nums()
print("\n")
num=int(input(f"{YELLOW}[>] Please enter a number (from the above ones) >>> "))
valErr = num in [1,2,3,4,5]
while not valErr:
try:
nums()
sleep(1)
num=int(input(f"{YELLOW}[>] Please enter again a number (from the above ones) >>> "))
valErr = num in [1,2,3,4,5]
except ValueError:
print(f"{RED}[β] Invalid number")
sleep(0.5)
print(f"{GREEN}[+] Acceptable numbers >>> [1-5]")
sleep(1)
if num == 1:
clear()
sleep(0.9)
print(f"{GREEN}[+] Acceptable answers >>> [yes/no]")
sleep(1)
keep=input(f"{YELLOW}[?] Keep log ? ").lower() in ('y', 'yes')
sleep(0.9)
print(f"{GREEN}[+] Acceptable answers >>> [yes/no]")
sleep(1)
check=input(f"{YELLOW}[?] Display the usernames of the followers added ? ").lower() in ('y', 'yes')
users = {
'Cristiano Ronaldo' : '173560420',
'Cardi B' : '1436859892',
'Kim Kardashian': '18428658',
'Ariana Grande' : '7719696',
'Nicki Minaj' : '451573056',
'Beyonce' : '247944034',
'Katy Perry' : '407964088',
'Selena Gomez' : '460563723',
'Justin Bieber' : '6860189',
'Lionel Messi' : '427553890',
'Neymar Jr' : '26669533',
'Kylian Mbappe' : '4213518589',
'Dua Lipa' : '12331195',
'Billie Eilish' : '28527810',
'Kylie Jenner' : '12281817',
'Khloe Kardashian' : '208560325',
'Kourtney Kardashian' : '145821237',
'Jennifer Lopez' : '305701719',
'Shakira' : '217867189',
'Instagram' : '25025320',
'National Geographic' : '787132',
'FC Barcelona' : '260375673',
'Real Madrid' : '290023231',
'Champions League' : '1269788896',
'Chris Brown' : '29394004',
'Taylor Swift' : '11830955',
'Kendall Jenner' : '6380930',
'Virat Kohli' : '2094200507',
'Zendaya' : '9777455',
'Marvel' : '204633036',
'Tom Holland' : '176618189',
'Emma Watson' : '1418652011',
'Millie Bobby Brown' : '3439002676',
'Shawn Mendes' : '212742998',
'Camila Cabello' : '19596899',
'NASA' : '528817151',
'Nike' : '13460080'
}
NAMES = list(users.keys())
sleep(0.6)
fname = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'files/consent.txt').replace('\\', '/')
if not os.path.exists(fname):
print(f"{GREEN}[+] Acceptable answers >>> [yes/no]")
sleep(0.9)
con=input(f"{YELLOW}[>] Do you consent that the author (new92) has no responsibility for any loss or damage the script may cause to {username} ? ").lower() in ('y', 'yes')
if con:
logging.basicConfig(
filename=fname,
level=logging.INFO,
format='%(asctime)s [%(levelname)s]: %(message)s',
datefmt='%Y-%m-%d %H:%M:%S'
)
logging.info(f'Yes I consent that the author (new92) has no responsibility for any loss or damage the script may cause to {username}.')
else:
print(f"{YELLOW}[OK]")
sleep(1)
print(f"{YELLOW}[1] Exit")
print(f"{YELLOW}[2] Uninstall IGFI and exit")
num=int(input(f"{YELLOW}[>] Please enter a number (from the above ones) >>> "))
valErr = num in [1,2]
while not valErr:
try:
print(f"{YELLOW}[1] Exit")
print(f"{YELLOW}[2] Uninstall IGFI and exit")
num=int(input(f"{YELLOW}[>] Please enter again a number (from the above ones) >>> "))
valErr = num in [1,2]
except ValueError:
print(f"{RED}[β] Please enter a valid number.")
sleep(2)
print(f"{GREEN}[+] Acceptable numbers >>> [1,2]")
sleep(1)
if num == 1:
clear()
print(f"{RED}[+] Exiting...")
sleep(1)
print(f"{GREEN}[+] See you next time π")
sleep(1)
quit(0)
else:
clear()
print(Uninstall())
sleep(1)
print(f"{RED}[+] Exiting...")
sleep(1)
print(f"{GREEN}[+] Thank you for choosing to use IGFI π")
sleep(2)
print(f"{GREEN}[+] If you have any suggestions or found a bug or need help feel free to contact me, at this email address: new92github@gmail.com")
sleep(2)
quit(0)
sleep(1)
clear()
print(f"{GREEN}[+] Acceptable answers >>> [yes/no]")
sleep(1)
ga=input(f"{YELLOW}[?] Grant the script access for extra info regarding your followers ? ").lower() in ('y', 'yes')
loader = instaloader.Instaloader()
client=instagrapi.Client()
if session:
try:
loader.load_session_from_file(username)
except FileNotFoundError:
print(f"{RED}[β] Session file not found !")
sleep(0.8)
print(f"{GREEN}[+] Logging in...")
sleep(0.8)
if not loader.context.is_logged_in:
loader.login(username, password)
loader.save_session_to_file()
sleep(0.8)
print(f"{YELLOW}[+] Attempting to login using {username} - {password}...")
sleep(0.8)
login = client.login(username, password)
profile = instaloader.Profile.from_username(loader.context, username)
followers_bef = profile.followers
FOLLOWERS = [follower.username for follower in profile.get_followers()]
if login:
print(f"{GREEN}[β] Login successful !")
sleep(0.5)
else:
print(f"{RED}[β] Failed to login.")
sleep(0.7)
print(f"{YELLOW}[1] Try with different combinations of usernames / passwords.")
print(f"{YELLOW}[2] Exit")
num=int(input(f"{YELLOW}[::] Number (from the above ones) >>> "))
if num == 1:
print(f"{YELLOW}[*] To quit the loop enter: <quit> in the username input.")
sleep(0.9)
while username != 'quit':
username=input(f"{YELLOW}[::] New username >>> ")
while checkUser(username):
print(f"{RED}[β] Invalid username !")
sleep(0.5)
username=input(f"{YELLOW}[::] New username >>> ")
sleep(0.8)
password = input(f"{YELLOW}[::] New password >>> ")
login = client.login(username, password)
if login:
user = username
print(f"{GREEN}[β] Login successful !")
username = '<quit>'
sleep(0.5)
else:
print(f"{RED}[β] Failed to login.")
sleep(0.7)
print(f"{GREEN}[+] Retrying...")
sleep(0.5)
username = user
else:
print(f"{RED}[+] Exiting...")
sleep(0.6)
print(f"{GREEN}[+] See you next time π")
sleep(0.5)
quit(0)
sleep(1)
print(f"{YELLOW}[+] Please wait while IGFI is increasing your followers...")
sleep(1.7)
print(f"{YELLOW}[+] To end the process enter <Ctrl> + <C>")
sleep(1.3)
clear()
f = 0
x = 0
for i in range(10000):
try:
for j in range(len(NAMES)):
client.user_follow(users[NAMES[j]])
print(f"{YELLOW}[+] Following {NAMES[j]}...")
sleep(2)
f += 1
print(f"{GREEN}[β] Ok")
sleep(0.5)
for j in range(len(NAMES)):
client.user_unfollow(users[NAMES[j]])
print(f"{YELLOW}[-] Unfollowing {NAMES[j]}...")
sleep(1.5)
x += 1
sleep(0.5)
print(f"{GREEN}[β] Ok")
sleep(1.5)
except KeyboardInterrupt:
res = f - x
if res != 0:
suc = f / float(len(NAMES))
fail = res / float(len(NAMES))
tot = f + x
print(f"{GREEN}[β] Successfully followed/unfollowed a total of {tot} users")
sleep(2)
print(f"{RED}[β] Failed to unfollow {abs(res)} users !")
sleep(1)
print(f"{GREEN}[+] Percentage of success >>> {suc}%")
sleep(1)
print(f"{RED}[+] Percentage of failure >>> {fail}%")
if ga:
followers_af = profile.followers
if followers_bef - followers_af != 0:
followers_af = profile.followers
print(f"{GREEN}[β] Successfully added >>> {followers_af - followers_bef} followers.")
sleep(1)
if check:
print(f"{RED}[β] WARNING: The data provided may be incorrect if your account is private and you haven't approved the follow requests")
sleep(1.5)
ADDS = [follower.username for follower in profile.get_followers()]
if ADDS == FOLLOWERS:
print(f"{RED}[β] No new followers added ! If your account is private try checking the pending follow requests.")
else:
print(f"{GREEN}[β] Found >>> {len(ADDS) - len(FOLLOWERS)} new followers.")
sleep(0.7)
for i, username in enumerate(ADDS):
print(f"{YELLOW}[+] User No{i+1} >>> {username}")
sleep(2)
print(f"{YELLOW}[*] Users which the script failed to unfollow:")
sleep(0.9)
print(f'{YELLOW}|---------------|USERS|---------------|')
for i in range(res-1, -1, -1):
print(f"{YELLOW}[->] User >>> {NAMES[i]}")
else:
print(f"{GREEN}[+] Success >>> 100%")
sleep(0.9)
print(f"{RED}[+] Fail >>> {res}%")
sleep(0.9)
if keep:
name = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'files/log.txt')
with open(name, 'w', encoding='utf-8') as f:
if res != 0:
f.write(f'[β] Successfully followed/unfollowed a total of {tot} users\n')
f.write(f'[β] Failed to unfollow {abs(res)} users !\n')
f.write(f'[+] Percentage of success >>> {suc}%\n')
f.write(f'[+] Percentage of failure >>> {fail}%\n')
if ga:
followers_af = profile.followers
if followers_bef - followers_af != 0:
followers_af = profile.followers
f.write(f'[β] Successfully added >>> {followers_af - followers_bef} followers.\n')
if check:
ADDS = [follower.username for follower in profile.get_followers()]
if ADDS != FOLLOWERS:
print(f"{GREEN}[β] Found >>> {len(ADDS) - len(FOLLOWERS)} new followers.")
sleep(0.7)
for i, username in enumerate(ADDS):
f.write(f"[+] User No{i+1} >>> {username}\n")
else:
f.write('[+] Percentage of success >>> 100%\n')
f.write(f'[+] Percentage of failure >>> {res}%')
print(f"{GREEN}[β] Successfully saved log !")
sleep(2)
print(f"{GREEN}[βͺ] File name >>> log.txt")
print(f"{GREEN}[βͺ] Path >>> {name}")
print(f"{GREEN}[βͺ] File size >>> {os.stat(name).st_size} bytes")
print("\n")
res = f - x
if res != 0:
suc = round(f / float(len(NAMES)))
fail = round(res / float(len(NAMES)))
tot = f + x
print(f"{GREEN}[β] Successfully followed/unfollowed a total of {tot} users")
sleep(2)
print(f"{RED}[β] Failed to unfollow {abs(res)} users !")
sleep(2)
print(f"{GREEN}[+] Percentage of success >>> {suc}%")
sleep(1)
print(f"{RED}[+] Percentage of failure >>> {fail}%")
sleep(1)
if ga:
followers_af = profile.followers
if followers_bef - followers_af != 0:
followers_af = profile.followers
print(f"{GREEN}[β] Successfully added >>> {followers_af - followers_bef} followers.")
sleep(1)
if check:
print(f"{RED}[β] WARNING: The data provided may be incorrect if your account is private and you haven't approved the follow requests.")
sleep(1.5)
ADDS = [follower.username for follower in profile.get_followers()]
if ADDS == FOLLOWERS:
print(f"{RED}[β] No new followers added ! Try checking the pending follow requests and try again.")
else:
print(f"{GREEN}[β] Found >>> {len(ADDS) - len(FOLLOWERS)} new followers.")
sleep(0.7)
for i, username in enumerate(ADDS):
print(f"{YELLOW}[+] User No{i+1} >>> {username}")
sleep(1.5)
print(f"{YELLOW}[*] Users script failed to unfollow:")
sleep(0.8)
print(f'{YELLOW}|---------------|USERS|---------------|\n')
for i in range(res,-1,-1):
print(f"{YELLOW}[+] User >>> {NAMES[i]}")
sleep(2)
else:
print(f"{YELLOW}[+] Success >>> 100%")
sleep(1)
print(f"{YELLOW}[+] Fail >>> {res}%")
sleep(2)
if keep:
name = './files/log.txt'
with open(name, 'w', encoding='utf-8') as f:
if res != 0:
f.write(f'[β] Successfully followed/unfollowed a total of {tot} users\n')
f.write(f'[β] Failed to unfollow {abs(res)} users !\n')
f.write(f'[+] Percentage of success >>> {suc}%\n')
f.write(f'[+] Percentage of failure >>> {fail}%\n')
if ga:
followers_af = profile.followers
if followers_bef - followers_af != 0:
followers_af = profile.followers
f.write(f'[β] Successfully added >>> {followers_af - followers_bef} followers.\n')
if check:
ADDS = [follower.username for follower in profile.get_followers()]
if ADDS != FOLLOWERS:
print(f"{GREEN}[β] Found >>> {len(ADDS) - len(FOLLOWERS)} new followers.")
sleep(0.7)
for i, username in enumerate(ADDS):
f.write(f"[+] User No{i+1} >>> {username}\n")
else:
f.write('[+] Percentage of success >>> 100%\n')
f.write(f'[+] Percentage of failure >>> {res}%')
sleep(0.6)
print(f"{GREEN}[β] Successfully saved log !")
sleep(1)
print(f"{GREEN}[βͺ] File name >>> log.txt")
sleep(0.5)
print(f"{GREEN}[βͺ] Location >>> {name}")
sleep(0.5)
print(f"{GREEN}[βͺ] File size >>> {os.stat(name).st_size} bytes")
elif num == 2:
clear()
ScriptInfo()
sleep(3.2)
elif num == 3:
clear()
loc = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'files/log.txt').replace('\\', '/')
with open(loc, 'w', encoding='utf-8') as f:
pass
print(f"{GREEN}[β] Successfully cleared log !")
sleep(1)
print(f"{GREEN}[βͺ] File name >>> log.txt")
sleep(0.5)
print(f"{GREEN}[βͺ] Location >>> {loc}")
sleep(0.5)
print(f"{GREEN}[βͺ] Size >>> 0 bytes")
sleep(2)
elif num == 4:
clear()
print(Uninstall())
sleep(2)
print(f"{GREEN}[+] Thank you for choosing IGFI ππ")
sleep(1.3)
print(f"{GREEN}[+] Hope you enjoyed it π€")
sleep(1)
print(f"{YELLOW}[+] If you have any suggestions or found a bug or need help feel free to contact me anytime, at this email address: new92github@gmail.com or via Github")
sleep(1.4)
print(f"{GREEN}[+] Until we meet again π«‘")
sleep(1)
quit(0)
else:
clear()
print(f"{YELLOW}[+] Thank you for using IGFI π")
sleep(2)
print(f"{YELLOW}[+] See you next time π")
sleep(1)
quit(0)
print("\n\n")
print(f"{YELLOW}[1] Return to menu")
print(f"{YELLOW}[2] Exit")
opt=int(input(f"{YELLOW}[>] Please enter a number (from the above ones) >>> "))
valErr = opt in [1,2]
while not valErr:
try:
print(f"{YELLOW}[1] Return to menu")
print(f"{YELLOW}[2] Exit")
opt=int(input(f"{YELLOW}[>] Please enter again a number (from the above ones) >>> "))
valErr = opt in [1,2]
except ValueError:
print(f"{RED}[β] Please enter a valid number.")
sleep(1)
print(f"{GREEN}[+] Acceptable numbers >>> [1,2]")
sleep(1)
if opt == 1:
clear()
main(username, password, session)
else:
clear()
print(f"{GREEN}[+] Thank you for using IGFI π")
sleep(2)
print(f"{GREEN}[+] See you next time π")
sleep(1)
quit(0)
if __name__ == '__main__':
sleep(2)
clear()
parser = argparse.ArgumentParser(description='IGFI is the best tool for increasing followers on Instagram.')
parser.add_argument('-u', '--username', help='The username to increase their followers.')
parser.add_argument('-p', '--password', help='The password of your instagram account.')
parser.add_argument('--session', help='The session file to use. To generate it >>> python3 cookies.py')
args = parser.parse_args()
if len(sys.argv) < 4:
if not os.environ.get('DOCKER_CONTAINER'):
print(f"{RED}[β] Error: Missing arguments.")
sleep(0.7)
print(f"{GREEN}[+] Usage >>> python3 igfi.py -u <username> -p <password> --session <path_to_session_file>")
sleep(1.5)
args.username=input(f"{YELLOW}[::] Please enter your username >>> ") if not args.username else args.username
args.password=input(f"{YELLOW}[::] Please enter your password >>> ") if not args.password else args.password
args.session=input(f"{YELLOW}[::] Please enter the path to the session file (if created else hit <Enter>) >>> ") if not args.session else args.session
else:
args.username = os.environ.get('USERNAME', args.username)
args.password = os.environ.get('PASSWORD', args.password)
args.session = os.environ.get('SESSION', args.session)
main(username=args.username.strip().lower(), password=args.password.strip(), session=args.session.strip().replace('\\', '/'))