-
Notifications
You must be signed in to change notification settings - Fork 5
/
BotdoLinkedin.py
33 lines (31 loc) · 1.6 KB
/
BotdoLinkedin.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
# Bot for getting friends in LinkedIn.
# Coded by Carlos Daniel Giovanella
# Macro made by me aswell
# Requirements: Python 3+, iMacros, and Firefox.
# Not tested on Linux/MacOS based systems
import subprocess , sys , os
def inicio():
os.system("cls")
print (' -----------------------------Made by--------------------------------------')
print (' # Carlos Daniel Giovanella ([email protected])')
print (' # ')
print (' # Facebook: www.fb.com/KiritoKirigayaKazutoKunZ')
print (' # Github: github.com/cardangi')
print (' # LinkedIn: https://www.linkedin.com/in/carlos-d-870792128/')
print (' # ')
print (' # usage: --v1 (run in normal slowly and limitated mode, add 1000 connections in like 5 hours')
print (' # usage: --v2 (run in the best mode, with timings, add 5000 connections in 2~3 hours')
print (' # usage: --help (more info about the usage)')
print (' # I do not take any responsibility and i are not liable for any damage caused.')
print (' -------------------------------------------------------------------------')
try:
if sys.argv[1] == "--v1":
subprocess.call([r'C:\Program Files (x86)\Mozilla Firefox\firefox.exe', '-new-tab', 'imacros://run/?m=MacroLinkedin.iim'])
if sys.argv[1] == "--v2":
subprocess.call([r'C:\Program Files (x86)\Mozilla Firefox\firefox.exe', '-new-tab', 'imacros://run/?m=MacroLinkedinV2.iim'])
if sys.argv[1] == "--help":
print ("\n\n\n\n\n\n\n\n\n\n\n\n\n")
print ("--v1 : Version 1, 100% working")
print ("--v2 : Version2 , beta test, maybe 100% working (?) any issue needs to be reported.")
except IndexError:
inicio()