Commit 7ae7ff85 authored by Cody Zacharias's avatar Cody Zacharias Committed by GitHub

Merge (#160)

* Update __version__.py

* Update README.md

* Few more previously unnoticed fixes
parent ee565b3c
......@@ -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 --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 --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)
......
VERSION = (1, 1, 4)
VERSION = (1, 1, 4, 0)
__version__ = '.'.join(map(str, VERSION))
......@@ -50,7 +50,7 @@ class Twint:
else:
for user in self.feed:
self.count += 1
username = user.find("a"["name"])
username = user.find("a")["name"]
await output.Username(username, self.config, self.conn)
async def favorite(self):
......@@ -121,7 +121,7 @@ def Favorites(config):
run(config)
def Followers(config):
config.Follwers = True
config.Followers = True
run(config)
def Following(config):
......
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