twitools/followertxt.py
Klaus-Uwe Mitterer b39b708270 Move follower functions to twitools
Create tables for storing followers and following in setup.py
2016-08-01 16:39:55 +02:00

21 lines
503 B
Python
Executable file

#!/usr/bin/env python3
import twitools, setuptools
import os, time, tweepy
def getOutDir(dirname="followers"):
if not os.path.isdir(dirname):
os.mkdir(dirname)
def getOutFile(dirname="followers"):
getOutDir(dirname)
return os.path.join(dirname, str(int(time.time())) + ".txt")
def writeOutFile(outfile=getOutFile()):
with open(getOutFile(), 'a') as f:
for follower in twitools.getNamesByIDs(twitools.getFollowerIDs()):
f.write(follower + "\n")
if __name__ == "__main__":
writeOutFile()