Skip to content

Instantly share code, notes, and snippets.

View orattray's full-sized avatar
🏎️

Oscar Rattray orattray

🏎️
  • Findlay Park
  • London, UK
  • 21:22 (UTC +01:00)
View GitHub Profile
@orattray
orattray / A.py
Created September 30, 2025 14:50
Anvil demo
def _markdown_to_pdf_anvil(self, markdown_text: str, company_name: str) -> bytes:
"""Convert markdown to PDF using Anvil API."""
# Ensure Anvil is available before proceeding
if not ANVIL_AVAILABLE or Anvil is None:
raise RuntimeError("Anvil API is not available")
try:
# Get API key from instance or environment
api_key = self.anvil_api_key
if not api_key: