Skip to content

v1.0.0

Compare
Choose a tag to compare
@edsu edsu released this 29 Nov 21:26
· 1277 commits to main since this release

🎉 Finally a v1.0.0 release. It was a long time coming. 🎉

While the functionality inside of twarc the module has remained pretty much the same in this release, the command line interface has changed significantly to use the subcommand style instead of leaning so heavily on command line options.

So what this means is before when you did something like this:

twarc.py --search blacklivesmatter > tweets.json

you will now do this:

twarc search blacklivesmatter > tweets.json

and similarly:

twarc filter blacklivesmatter > stream.json
twarc followers deray > user-ids.txt
twarc friends Nettaaaaaaaa > user-ids.txt
twarc help 
twarc hydrate ids.txt > tweets.json
twarc retweets 20 > retweets.json
twarc sample > stream.json
twarc timeline deray > tweets.json
twarc trends 2486982 > trends.json
twarc users user-ids.txt > users.json

See twarc help for all the details and options.