Mercurial > codedump
annotate gendesc.py @ 129:8c39820da60a default tip
add decode-mixed-mode.c
this decodes macintosh mixed-mode procedure types. It currently
only supports stack-based procedures :)
author | Paper <paper@tflc.us> |
---|---|
date | Sun, 19 Oct 2025 22:48:24 -0400 |
parents | 1a83948b7f80 |
children |
rev | line source |
---|---|
64 | 1 import json |
2 import sys | |
3 import datetime | |
4 | |
5 with open(sys.argv[1]) as f: | |
6 data = json.load(f) | |
128
1a83948b7f80
gendesc: only use fulltitle if available
Paper <paper@tflc.us>
parents:
118
diff
changeset
|
7 title = data['title'] if not 'fulltitle' in data else data['fulltitle'] |
1a83948b7f80
gendesc: only use fulltitle if available
Paper <paper@tflc.us>
parents:
118
diff
changeset
|
8 print(title + " [{0}]".format(data["uploader"]), end="\n\n-----------------\n\n") |
64 | 9 upload_date = datetime.datetime(int(data["upload_date"][:-4]), int(data["upload_date"][4:][:-2]), int(data["upload_date"][6:])) |
10 print("Published on " + f"{upload_date.strftime('%b')} {upload_date.strftime('%d').strip('0')}, {upload_date.strftime('%Y')}", end="\n\n") | |
11 print(data["description"]) |