Commit 1dc9e9a9 authored by Francesco Poldi's avatar Francesco Poldi

Fix #130

parent 79e56cee
...@@ -169,10 +169,13 @@ def main(): ...@@ -169,10 +169,13 @@ def main():
elif args.followers: elif args.followers:
twint.run.Followers(c) twint.run.Followers(c)
elif args.retweets or args.profile_full: elif args.retweets or args.profile_full:
_userlist = loadUserList(args.userlist, "profile") if args.userlist:
for _user in _userlist: _userlist = loadUserList(args.userlist, "profile")
args.username = _user for _user in _userlist:
c = initialize(args) args.username = _user
c = initialize(args)
twint.run.Profile(c)
else:
twint.run.Profile(c) twint.run.Profile(c)
else: else:
twint.run.Search(c) twint.run.Search(c)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment