Skip to content
This repository has been archived by the owner on Mar 19, 2023. It is now read-only.

Latest commit

 

History

History
36 lines (31 loc) · 787 Bytes

README.md

File metadata and controls

36 lines (31 loc) · 787 Bytes

DAMT Build License

Delete tweets older than X days

Usage:

  -config string
        JSON Config File
  -days int
        Tweets older than this value will be deleted
  -help
        Prints this message
  -test
        Do not delete anything
        
   Example:
   Delete all tweets older than 7 days
   ./DAMT --config configfile.json --days 7
   
   Delete all my tweets
   ./DAMT --config configfile.json

ConfigFile

{
    "APIKey":"String",
    "APISecretKey":"String",
    "AccessToken":"String",
    "AccessTokenSecret":"String",
    "Spare": [
        "TweetId as String"
    ],
    "DeleteReplies": true
}