Created
September 26, 2016 07:54
-
-
Save Rich700000000000/a3dce908061114cdc932020b33aac1db to your computer and use it in GitHub Desktop.
urlFromFile - WIP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def | |
def getAccounts(): | |
with open('./ig.txt') as f: | |
lines = f.read().splitlines() | |
return lines | |
def main(): | |
accs = getAccounts() | |
for i in accs: | |
downacc(i) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment