Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sendblue

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sendblue

A tiny client wrapper for the Sendblue API in Python

  • 0.1.2
  • PyPI
  • Socket score

Maintainers
1

Sendblue API

Overview

This package is a Python wrapper for the Sendblue API. It provides a simple interface for sending and receiving messages.

Prerequisites

You will need to get API keys by signing up for a Sendblue account. You can do so here.

Installation

pip install sendblue-python

Usage

Initializing

from sendblue import Sendblue

# Load your key from an environment variable or secret management service
# (do not include your key directly in your code)
SENDBLUE_API_KEY = os.environ.get("SENDBLUE_API_KEY")
SENDBLUE_API_SECRET = os.environ.get("SENDBLUE_API_SECRET")

sendblue = Sendblue(SENDBLUE_API_KEY, SENDBLUE_API_SECRET)

Send Message API Call

response = sendblue.send_message('+19998887777', {
    'content': 'Hello from Sendblue!',
    'send_style': 'invisible',
    'media_url': 'https://source.unsplash.com/random.png',
    'status_callback': 'https://example.com/callback'
})

Send Group Message API call

response = sendblue.send_group_message(['+19998887777', '+19998887778'], {
    'content': 'Hello from Sendblue!',
    'send_style': 'invisible',
    'media_url': 'https://source.unsplash.com/random.png',
    'status_callback': 'https://example.com/callback'
})

Hint

You can get free api keys for testing & hobby purposes by emailing the team

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc