[ / / / / / / / / / / / / / ] [ dir / animu / choroy / dempart / doomer / idchan / jenny / tingles / vfur ][Options][ watchlist ]

/tech/ - Technology

You can now write text to your AI-generated image at https://aiproto.com It is currently free to use for Proto members.
Email
Comment *
Verification *
File
Select/drop/paste files here
Password (Randomized for file and post deletion; you may also set your own.)
* = required field[▶ Show post options & limits]
Confused? See the FAQ.
Expand all images

File (hide): 07480937bc7057f⋯.jpg (87.07 KB, 1024x769, 1024:769, he-man classic.jpg) (h) (u)

[–]

 No.1057913[Watch Thread][Show All Posts]

>>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



[Return][Go to top][Catalog][Screencap][Nerve Center][Cancer][Update] ( Scroll to new posts) ( Auto) 5
0 replies | 0 images | Page ???
[Post a Reply]
[ / / / / / / / / / / / / / ] [ dir / animu / choroy / dempart / doomer / idchan / jenny / tingles / vfur ][ watchlist ]