- Create Economist SubmissionTracking package correctly: * mainArticle = full blog post content * coverLetter = 216-word SIR— letter * Links to blog post via blogPostId - Archive 'Letter to The Economist' from blog posts (it's the cover letter) - Fix date display on article cards (use published_at) - Target publication already displaying via blue badge Database changes: - Make blogPostId optional in SubmissionTracking model - Economist package ID: 68fa85ae49d4900e7f2ecd83 - Le Monde package ID: 68fa2abd2e6acd5691932150 Next: Enhanced modal with tabs, validation, export 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
35 lines
925 B
Python
35 lines
925 B
Python
import sys
|
|
|
|
|
|
def main(args=None):
|
|
if args is None:
|
|
args = sys.argv[1:]
|
|
|
|
# TODO Handle library-wide options. Eg.:
|
|
# --unicodedata
|
|
# --verbose / other logging stuff
|
|
|
|
# TODO Allow a way to run arbitrary modules? Useful for setting
|
|
# library-wide options and calling another library. Eg.:
|
|
#
|
|
# $ fonttools --unicodedata=... fontmake ...
|
|
#
|
|
# This allows for a git-like command where thirdparty commands
|
|
# can be added. Should we just try importing the fonttools
|
|
# module first and try without if it fails?
|
|
|
|
if len(sys.argv) < 2:
|
|
sys.argv.append("help")
|
|
if sys.argv[1] == "-h" or sys.argv[1] == "--help":
|
|
sys.argv[1] = "help"
|
|
mod = "fontTools." + sys.argv[1]
|
|
sys.argv[1] = sys.argv[0] + " " + sys.argv[1]
|
|
del sys.argv[0]
|
|
|
|
import runpy
|
|
|
|
runpy.run_module(mod, run_name="__main__")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|