Commit a937c8fc authored by andytnt's avatar andytnt

add userlist lookup

parent 4f2512d5
...@@ -244,7 +244,14 @@ def main(): ...@@ -244,7 +244,14 @@ def main():
twint.run.Profile(c) twint.run.Profile(c)
else: else:
twint.run.Profile(c) twint.run.Profile(c)
elif args.user_full and args.username: elif args.user_full:
if args.userlist:
_userlist = loadUserList(args.userlist, "userlist")
for _user in _userlist:
args.username = _user
c = initialize(args)
twint.run.Lookup(c)
else:
twint.run.Lookup(c) twint.run.Lookup(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