pip3 install --user --upgrade -e git+https://github.com/twintproject/twint.git@origin/master#egg=twint;import twint
c = twint.Config()
startnode = 'UbwuCKwD0eIrLDr'
c.Username = startnode
c.Store_object = True
c.User_full = True
twint.run.Followers(c)
print(twint.output.follows_list)
When "c.User_full = True" is used, print command outputs empty list. If "c.User_full" is removed, the print command prints user ids.
Distributor ID: Ubuntu
Description: Ubuntu 18.04.3 LTS
Release: 18.04
Codename: bionic
Python 3.6.8 (default, Oct 7 2019, 12:59:55)
[GCC 8.3.0] on linux
You have to use users = twint.output.users_list
Thanks, did I miss this in the Wiki somewhere? If yes, please refer me to it. If no, never mind.
There you go! https://github.com/twintproject/twint/wiki/Storing-objects-in-RAM#users-info
Most helpful comment
You have to use
users = twint.output.users_list