import twint
c = twint.Config()
c.Username = "twitter"
c.Custom["tweet"] = ["id"]
c.Custom["user"] = ["bio"]
c.Limit = 10
c.Store_object = True
twint.run.Search(c)
tweets_as_objects = twint.output.tweets_object
tweet = tweets_as_objects[1]
print (tweet)