]> jfr.im git - z_archive/twitter.git/commit
Merge pull request #87 from hugovk/master
authorMike Verdone <redacted>
Fri, 28 Sep 2012 13:36:41 +0000 (06:36 -0700)
committerMike Verdone <redacted>
Fri, 28 Sep 2012 13:36:41 +0000 (06:36 -0700)
commit6af23175cba88b7fc5848be96cb09f7125d346b7
tree3950e77663cfbaf08056100c8b013574f8b895a9
parentde94640f402ee1d8f4f1a564e6b54c481a037c84
parent4f0b5ca6894574589ef3598aa0b366d702c69583
Merge pull request #87 from hugovk/master

Added options for archiving mentions and favorites
I've added the following options to archiver.py:

```
 -m --mentions <file>  archive own mentions instead of timeline into
                       given file name (requires OAuth, max 800 statuses)
 -v --favorites        archive user's favorites instead of timeline
```

This lets me periodically backup all my tweets, favorites and mentions with a batch file something like this:

```
@echo Archiving my tweets
@call twitter-archiver.exe --oauth --save-dir M:\twitter hugovk

@echo.
@echo Archiving my favourites
@call twitter-archiver.exe --oauth --save-dir M:\twitter --favorites hugovk

@echo.
@echo Archiving my mentions
@call twitter-archiver.exe --oauth --save-dir M:\twitter --mentions hugovk-mentions
```