{"library":"resend","install":[{"cmd":"pip install resend","imports":["import resend\nimport os\n\nresend.api_key = os.environ['RESEND_API_KEY']\n\nparams: resend.Emails.SendParams = {\n    'from': 'Acme <onboarding@resend.dev>',\n    'to': ['user@example.com'],\n    'subject': 'Hello',\n    'html': '<strong>Hello!</strong>'\n}\nemail = resend.Emails.send(params)\nprint(email['id'])"]}]}