diff --git a/followertxt.py b/followertxt.py deleted file mode 100755 index 4e8deaa..0000000 --- a/followertxt.py +++ /dev/null @@ -1,20 +0,0 @@ -#!/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()