Commit 258bd8e6 authored by Cody Zacharias's avatar Cody Zacharias Committed by GitHub

Update README.md

parent c0d07e9f
......@@ -14,7 +14,7 @@ Some of the benefits of using Tweep vs Twitter API:
## Requirements
- Python 3.5/3.6
- `pip install -r requirements.txt`
- `pip3 install -r requirements.txt`
## Usage
- `-u` The user's Tweets you want to scrape.
......@@ -25,6 +25,7 @@ Some of the benefits of using Tweep vs Twitter API:
- `--tweets` Display Tweets only.
- `--verified` Display Tweets only from verified users (Use with `-s`).
- `--users` Display users only (Use with `-s`).
- `--csv` Write as a .csv file.
## Low-Hanging Fruit
The `--fruit` feature will display Tweets that *might* contain sensitive info such as:
......@@ -42,6 +43,7 @@ A few simple examples to help you understand the basics:
- `python3 tweep.py -u username --year 2014` - Collect Tweets that were tweeted **before** 2014.
- `python3 tweep.py -u username --since 2015-12-20` - Collect Tweets that were tweeted since 2015-12-20.
- `python3 tweep.py -u username -o file.txt` - Scrape Tweets and save to file.txt.
- `python3 tweep.py -u username -o file.csv --csv` - Scrape Tweets and save as a csv file.
- `python3 tweep.py -u username --fruit` - Show Tweets with low-hanging fruit.
- `python3 tweep.py -s "Donald Trump" --verified --users` - List verified users that Tweet about Donald Trump.
......
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