mirror of
https://gitlab.com/jeancf/twoot.git
synced 2024-11-23 20:11:11 +00:00
Added TOML option
This commit is contained in:
parent
969b6849b8
commit
cb798b7b17
|
@ -34,6 +34,12 @@ remove_trackers_from_urls = false
|
|||
# Default is ""
|
||||
footer = ""
|
||||
|
||||
# If specified, also diplay a timestamp on the "Original Tweet" line
|
||||
# in the given format e.g. "%D %b %Y %H:%M"
|
||||
# see https://docs.python.org/3/library/datetime.html#strftime-strptime-behavior
|
||||
# Default is "" (tweet timestamp is not displayed)
|
||||
tweet_time_format = ""
|
||||
|
||||
# Do not add reference to "Original tweet" on toots
|
||||
# default is false
|
||||
remove_original_tweet_ref = false
|
||||
|
|
10
twoot.py
10
twoot.py
|
@ -90,7 +90,8 @@ def build_config(args):
|
|||
'skip_retweets': False,
|
||||
'remove_link_redirections': False,
|
||||
'remove_trackers_from_urls': False,
|
||||
'footer': '',
|
||||
'footer': "",
|
||||
'tweet_time_format': "",
|
||||
'remove_original_tweet_ref': False,
|
||||
'tweet_max_age': float(1),
|
||||
'tweet_delay': float(0),
|
||||
|
@ -790,6 +791,7 @@ def main(argv):
|
|||
logging.info(' remove_link_redirections : ' + str(TOML['options']['remove_link_redirections']))
|
||||
logging.info(' remove_trackers_from_urls: ' + str(TOML['options']['remove_trackers_from_urls']))
|
||||
logging.info(' footer : ' + TOML['options']['footer'])
|
||||
logging.info(' tweet_time_format : ' + TOML['options']['tweet_time_format'])
|
||||
logging.info(' remove_original_tweet_ref: ' + str(TOML['options']['remove_original_tweet_ref']))
|
||||
logging.info(' update_profile : ' + str(TOML['options']['update_profile']))
|
||||
logging.info(' tweet_max_age : ' + str(TOML['options']['tweet_max_age']))
|
||||
|
@ -980,9 +982,9 @@ def main(argv):
|
|||
else:
|
||||
tweet_text += '\n\nOriginal tweet: ' + substitute_source(full_status_url)
|
||||
|
||||
# Check what timestamp would look like
|
||||
logging.debug("TEST TIMESTAMP " + str(time_string))
|
||||
logging.debug(tweet_text + ' (' + datetime.strftime(timestamp, '%x %X') + ')')
|
||||
# Add timestamp to the "Original Tweet" line
|
||||
if TOML['options']['tweet_time_format'] != "":
|
||||
tweet_text += ' (' + datetime.strftime(timestamp, TOML['options']['tweet_time_format']) + ')'
|
||||
|
||||
# If no media was specifically added in the tweet, try to get the first picture
|
||||
# with "twitter:image" meta tag in first linked page in tweet text
|
||||
|
|
Loading…
Reference in New Issue
Block a user