Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 938 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 938 Bytes

PyZenvia

Build Status Code Health Coverage Status PyPi Version

Package for send sms by Zenvia API

Installation

Prerequisites

  • Python version >= 3.6
  • Your account and password
$ pip install pyzenvia

Usage

from pyzenvia import Sender
sender = Sender(account, password)
response = sender.send(phone, message)
print(response['success'])
print(response['result'])
print(response['error'])