Commit 14291f6b authored by andytnt's avatar andytnt

Merge remote-tracking branch 'upstream/master'

parents 9df17bde 056bec4d
......@@ -96,8 +96,8 @@ We are developing a Twint Desktop App.
![4](https://i.imgur.com/DzcfIgL.png)
## FAQ
> While scraping tweets and saving them to a database, the process is a bit slow
That's because also the informations about the user (bio, likes, etc.) are stored in the database. To avoid this process pass `--user-info` to CLI, or specify `c.User_info = False` if you are using Twint as module.
> While scraping tweets and saving them to a database, I want also save users infos
Pass `--user-info` to CLI, or specify `c.User_info = True` if you are using Twint as module.
## Contact
......
......@@ -162,7 +162,7 @@ def options():
ap.add_argument("--user-full",
help="Collect all user information (Use with followers or following only).",
action="store_true")
ap.add_argument("--user-info", help="Scrape user's info in tweet", action="store_false")
ap.add_argument("--user-info", help="Scrape user's info in tweet", action="store_true")
ap.add_argument("--profile-full",
help="Slow, but effective method of collecting a user's Tweets and RT.",
action="store_true")
......
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