I am using twint
for scraping twitter profiles.
When I run this script:
c = twint.Config()
c.Username = username
c.Store_object = True
c.Store_object_users_list = users
c.Hide_output = True
twint.run.Lookup(c)
try:
userna = users[0]
except:
continue
web = userna.url
I get the masked/shortened URL instead of a real one. How can I get the real url?
What would you advise?
The following works.