{"library":"sendgrid","install":[{"cmd":"pip install sendgrid","imports":["from sendgrid import SendGridAPIClient\nfrom sendgrid.helpers.mail import Mail\n\nmessage = Mail(\n    from_email='from@example.com',\n    to_emails='to@example.com',\n    subject='Subject',\n    html_content='<strong>Hello</strong>'\n)\nsg = SendGridAPIClient(os.environ.get('SENDGRID_API_KEY'))\nresponse = sg.send(message)"]}]}