Code and data for arewedecentralizedyet.online and related projects
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add a 'last updated' timestamp to the JSON output

+2
+2
data-fetchers/geo/fetch-geo-hosts.py
··· 341 341 args = parser.parse_args() 342 342 343 343 csv_path, hosts = load_hosts(args.source) 344 + updated_timestamp = csv_path.stem 344 345 if args.limit is not None: 345 346 hosts = hosts[: max(args.limit, 0)] 346 347 ··· 500 501 "color": style.get("color"), 501 502 "icon": style.get("icon"), 502 503 "type": style.get("type"), 504 + "updated": updated_timestamp, 503 505 } 504 506 505 507 if args.source == "fedi-mau":