mirror of
https://gitlab.com/jeancf/twoot.git
synced 2024-11-27 14:01:13 +00:00
Last updates before release
This commit is contained in:
parent
50e961b70f
commit
2c4d6bd7e0
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,8 +1,14 @@
|
||||||
**XX NOV 2022** VERSION 2.4 Added command-line option (`-u`) to
|
**23 NOV 2022** VERSION 2.5 Added command-line option (`-l`) to remove
|
||||||
|
redirection from links included in tweets. Obfuscated links are replaced
|
||||||
|
by the URL that the resource is directly downloaded from. Also improved
|
||||||
|
tracker removal by cleaning URL fragments as well (contrib: mathdatech,
|
||||||
|
thanks!).
|
||||||
|
|
||||||
|
**22 NOV 2022** VERSION 2.4 Added command-line option (`-u`) to
|
||||||
remove tracking parameters from URLs included in tweets. A tracking URL
|
remove tracking parameters from URLs included in tweets. A tracking URL
|
||||||
is a normal URL with parameters attached to it. These parameters are used
|
is a normal URL with parameters attached to it. These parameters are used
|
||||||
by marketing companies to identify the source of a click and the effectiveness
|
by marketing companies to identify the source of a click and the effectiveness
|
||||||
of a communication campaign.
|
of a communication campaign (contrib: mathdatech, thanks!).
|
||||||
|
|
||||||
**15 NOV 2022** VERSION 2.3 Added command-line option (`-s`) to
|
**15 NOV 2022** VERSION 2.3 Added command-line option (`-s`) to
|
||||||
skip retweets. With this option, retweets will be ignored and not posted
|
skip retweets. With this option, retweets will be ignored and not posted
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
# Twoot
|
# Twoot
|
||||||
|
|
||||||
Twoot is a python script that mirrors tweets from a twitter account to a Mastodon account.
|
**Twoot is a python script that mirrors tweets from a twitter account to a Mastodon account.
|
||||||
It is simple to set-up on a local machine, configurable and feature-rich.
|
It is simple to set-up on a local machine, configurable and feature-rich.**
|
||||||
|
|
||||||
**UPDATE XX NOV 2022** VERSION 2.5 Added command-line option (`-l`) to remove redirection
|
**UPDATE 23 NOV 2022** VERSION 2.5 Added command-line option (`-l`) to remove redirection
|
||||||
from links included in tweets. Obfuscated links are replaced by the URL that the resource
|
from links included in tweets. Obfuscated links are replaced by the URL that the resource
|
||||||
is directly downloaded from.
|
is directly downloaded from. Also improved tracker removal by cleaning URL fragments as well
|
||||||
|
(contrib: mathdatech, thanks!).
|
||||||
|
|
||||||
> Previous updates can be found in CHANGELOG.
|
> Previous updates can be found in CHANGELOG.
|
||||||
|
|
||||||
|
|
2
twoot.py
2
twoot.py
|
@ -40,7 +40,7 @@ MAX_REC_COUNT = 50
|
||||||
|
|
||||||
# Set the desired verbosity of logging
|
# Set the desired verbosity of logging
|
||||||
# One of logging.DEBUG, logging.INFO, logging.WARNING, logging.ERROR, logging.CRITICAL
|
# One of logging.DEBUG, logging.INFO, logging.WARNING, logging.ERROR, logging.CRITICAL
|
||||||
LOGGING_LEVEL = logging.DEBUG
|
LOGGING_LEVEL = logging.INFO
|
||||||
|
|
||||||
# How many seconds to wait before giving up on a download (except video download)
|
# How many seconds to wait before giving up on a download (except video download)
|
||||||
HTTPS_REQ_TIMEOUT = 10
|
HTTPS_REQ_TIMEOUT = 10
|
||||||
|
|
Loading…
Reference in New Issue
Block a user