diff --git a/microblog.py b/microblog.py index 258f33a..6f16cad 100644 --- a/microblog.py +++ b/microblog.py @@ -369,7 +369,7 @@ if __name__ == "__main__": with open(config["file_output"], 'w') as f: print(json.dumps(p), file=f) - def fn1(f_cfg): # come up with better name later/ + def get_webring(f_cfg): # come up with better name later/ import pycurl from io import BytesIO def get_proxy(): @@ -445,7 +445,7 @@ if __name__ == "__main__": print("\tsource: ", profile, file=sys.stderr) return rendered - def fn1a(profiles, save_path, img_src): + def get_avatars(profiles, save_path, img_src): import hashlib imgs, info = fetch([p["avatar"] for p in profiles]) l = len(imgs) @@ -475,7 +475,7 @@ if __name__ == "__main__": if f_cfg["internal-avatars"]["enabled"]: a = f_cfg["internal-avatars"]["local_path_to_avatars"] b = f_cfg["internal-avatars"]["path_to_avatars"] - fn1a(list_of_json_objs, a, b) + get_avatars(list_of_json_objs, a, b) list_of_json_objs.sort(key=lambda e: e["last-updated"], reverse=True) return render(list_of_json_objs, f_cfg["format"]) @@ -516,7 +516,7 @@ if __name__ == "__main__": export_profile( len(p), p[0].get_epoch_time(), cfg["webring"] ) if not skip_fetch: - fellows = fn1(cfg["webring"]["following"] ) + fellows = get_webring(cfg["webring"]["following"] ) if fellows != []: updated += writepage( tpl, fellows, tc, cfg["page"], subdir="placeholder" )