Commit a11db143 authored by haccer's avatar haccer

Merge branch 'master' of github.com:twintproject/twint

parents e4c8afbe 069230e6
...@@ -46,6 +46,7 @@ A few simple examples to help you understand the basics: ...@@ -46,6 +46,7 @@ A few simple examples to help you understand the basics:
- `python3 twint.py -u username --following --user-full` - Collect full user information a person follows - `python3 twint.py -u username --following --user-full` - Collect full user information a person follows
- `python3 twint.py -u username --profile-full` - Use a slow, but effective method to gather all the Tweets from a user's profile (Including Retweets). - `python3 twint.py -u username --profile-full` - Use a slow, but effective method to gather all the Tweets from a user's profile (Including Retweets).
- `python3 twint.py -u username --retweets` - Use a quick method to gather the last 900 Tweets (that includes retweets) from a user's profile. - `python3 twint.py -u username --retweets` - Use a quick method to gather the last 900 Tweets (that includes retweets) from a user's profile.
- `python3 twint.py -u username --resume 10940389583058` - Resume a search starting from the specified Tweet ID.
More detail about the commands and options are located in the [wiki](https://github.com/twintproject/twint/wiki/Commands) More detail about the commands and options are located in the [wiki](https://github.com/twintproject/twint/wiki/Commands)
......
VERSION = (1, 1, 4) VERSION = (1, 1, 4, 0)
__version__ = '.'.join(map(str, VERSION)) __version__ = '.'.join(map(str, VERSION))
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