Commit bd111082 authored by andytnt's avatar andytnt Committed by Francesco Poldi

#123 (#264)

* Fix json

* Added new data to meta

* Fix Target profile infos are scraped at each round

* Remove UserId()

* single user info

* clean comments

* clean

* add userlist lookup
parent fd362af5
...@@ -244,8 +244,15 @@ def main(): ...@@ -244,8 +244,15 @@ 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:
twint.run.Lookup(c) 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)
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