From 5cb5d7a29eb2c111ef804be7cc081dd7520fcd76 Mon Sep 17 00:00:00 2001 From: Maurizio Paglia Date: Wed, 16 Nov 2022 14:34:11 +0100 Subject: [PATCH] Create pelican_toot.py --- pelican_toot.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 pelican_toot.py diff --git a/pelican_toot.py b/pelican_toot.py new file mode 100644 index 00000000..5029149f --- /dev/null +++ b/pelican_toot.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +""" +Post new articles on Mastodon +""" + +import string + +import logging +logger = logging.getLogger(__name__) + +from pelican import signals + +# https://github.com/bear/python-twitter/wiki +import Mastodon.py -- 2.30.2