>>13146745
I'm not sure why every time someone has a productive idea on /pol/ it gets shoahed but I wrote a script for OP of that deleted thread.
Use LinkedIn to find people via their email addresses. Find email addresses of people you want to add on LinkedIn. When you create a new account, LinkedIn will give you the option of importing contacts from Gmail or whatever. But instead of adding all of your Gmail contacts to your new Gmail account manually use a script to write them from a text file to a CSV in Google format which has 31 comma delimited fields. This makes more sense when you open a CSV in plaintext than when view in excel or libre. But anyhow I wrote a script for creating the contacts.csv.
Last I checked you can add something like 3000 contacts to a single Gmail account or was it 3000 contacts you can add to LinkedIn or facebook.
Anyhow I wrote python. Sorry in advance for shitty code but it was down and dirty. Feel free to fork this and use it for spamming or whatever because LinkedIn is fucking worthless.
#!/usr/bin/python
import sys
##usage python writecsv.py <pathtoinputfile> <pathtooutputfile>
inputfile=sys.argv[1]
outputfile=sys.argv[2]
f= open(outputfile,"w+")
f.write("Name,Given Name,Additional Name,Family Name,Yomi Name,Given Name Yomi,Additional Name Yomi,Family Name Yomi,Name Prefix,Name Suffix,Initials,Nickname,Short Name,Maiden Name,Birthday,Gender,Location,Billing Information,Directory Server,Mileage,Occupation,Hobby,Sensitivity,Priority,Subject,Notes,Language,Photo,Group Membership,E-mail 1 - Type,E-mail 1 - Value %d\r\n")
with open(inputfile) as fp:
for line in enumerate(fp):
faps=str(line)
taps=',,,,,,,,,,,,,,,,,,,,,,,,,,,,,,'+faps
f.write(taps)
f.close