Getting Stabbed in a Dream: What It Means Explained

Getting Stabbed in a Dream: What It Means Explained

#!/usr/bin/env python3 """Fetch oldest post by updated_at from Ghost Content API. Outputs JSON: {id, title, slug, html, updated_at, url}""" import json, urllib.request, sys CONTENT_KEY = "3d69ad6d7f9b181f283c328c5d" BASE = "https://meaninginadream.com/ghost/api/content" # Get oldest post url = f"{BASE}/posts/?key={CONTENT_KEY}&limit=1&fields=id,title,slug,updated_at&order=updated_at%20asc" data = json.loads(urllib.request.urlopen(url).read()) post = data["posts"][0] # Get full HTML url2 = f"{BASE}/posts/{post['id']}/?key={CONTENT_KEY}&fields=id,title,slug,html,updated_at" full = json.loads(urllib.request.urlopen(url2).read())["posts"][0] full["url"] = f"https://meaninginadream.com/{full['slug']}/" json.dump(full, sys.stdout)