Commit e68e5073 authored by andytnt's avatar andytnt

Merge remote-tracking branch 'upstream/master'

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