TWDLT is a tool to auto-delete tweets after some time.
676
This is a docker-ed version of YoSmudge/twdlt.
TWDLT is a simple Python script to automatically delete any tweets older than a certain date. You can set separate "expire" times for normal tweets and @replies.
## Usage
# Create a directory
$ mkdir twdlt && cd twdlt
# Download docker-compose file
$ wget https://github.com/chrootLogin/docker-twdlt/raw/master/docker-compose.yml.dist -O docker-compose.yml
# Change the setting to your needs
$ vi docker-compose.yml
# Start twdlt
$ docker-compose up -d
### Without docker-compose
$ docker run -d \
--name twdlt \
-e AGE=240 \
-e AT_AGE=240 \
-e CONSUMER_KEY=xxxx \
-e CONSUMER_SECRET=xxxx \
-e ACCESS_TOKEN=xxxx \
-e ACCESS_SECRET=xxxx \
rootlogin/twdlt
Twdlt is setup through environment variables:
AT_AGE instead of AGEyes to run in verbose mode. (debug)Twitter-API settings
This software is licensed under the GPLv3.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Content type
Image
Digest
Size
42.8 MB
Last updated
about 8 years ago
docker pull rootlogin/twdlt