Module: postgraphs¶
This module finds the graph and wordcloud images and alt text files that were created by graph and wordcloud, and it creates a Mastodon post with these images attached. It assigns the alt text to each image and also uses that alt text as the body of the post.
Configuration¶
The postgraphs
module is controlled by the [postgraphs]
section of the configuration file:
[postgraphs]
debug = 20
dry_run = false
visibility = public
message = Here are the graphs!
Configuration Options¶
Option | Description |
---|---|
dry_run |
If true, don't actually post (default: false) |
visibility |
Post visibility: public, unlisted, private, or direct (default: public) |
message |
Custom message to include with the post |
It will pull the standard Mastodon authentication parameters. But you can include different
parameters in the [postgraphs]
section of the config file.
[postgraphs]
api_base_url = https://example.social
cred_file = /path/to/your/access_token.secret
botusername = yourbotname
Usage¶
To post graphs to Mastodon:
mastoscore --debug=info ini/yourevent.ini graph
mastoscore --debug=info ini/yourevent.ini wordcloud
mastoscore --debug=info ini/yourevent.ini postgraphs
Code Reference¶
Module for posting graph and wordcloud images to Mastodon with their alt text.
This module finds the graph and wordcloud images along with their corresponding alt text files, and creates a post with these images attached.
find_graph_files(config)
¶
Find the graph image and its corresponding alt text file.
Parameters¶
- config: A ConfigParser object from the config module
Returns¶
A tuple containing (graph_image_path, graph_alt_text) or (None, None) if not found
Source code in mastoscore/postgraphs.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
|
find_wordcloud_files(config)
¶
Find the wordcloud image and its corresponding alt text file.
Parameters¶
- config: A ConfigParser object from the config module
Returns¶
A tuple containing (wordcloud_image_path, wordcloud_alt_text) or (None, None) if not found
Source code in mastoscore/postgraphs.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
|
post_graphs(config)
¶
Find graph and wordcloud images with their alt text and post them to Mastodon.
Parameters¶
- config: A ConfigParser object from the config module
Config Parameters Used¶
Option | Description |
---|---|
postgraphs:debug |
Debug level for logging |
postgraphs:dry_run |
Boolean. If True, don't actually post. |
postgraphs:visibility |
Post visibility (public, unlisted, private, direct) |
postgraphs:message |
Custom message to include with the post |
mastoscore:hashtag |
Hashtag used for the analysis |
mastoscore:event_year |
Year of the event (YYYY) |
mastoscore:event_month |
Month of the event (MM) |
mastoscore:event_day |
Day of the event (DD) |
Returns¶
Boolean indicating success or failure
Source code in mastoscore/postgraphs.py
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
|