From: Maurizio Paglia Date: Wed, 16 Nov 2022 13:34:11 +0000 (+0100) Subject: Create pelican_toot.py X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?a=commitdiff_plain;h=5cb5d7a29eb2c111ef804be7cc081dd7520fcd76;p=blog.git Create 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