Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 442 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 442 Bytes

#coolsms-python Simple python library for korean SMS service provider CoolSMS(coolsms.co.kr)

##Installation

pip install coolsms

##Basic Usage

from coolsms import Sender

# API key and secret from http://coolsms.co.kr/service_setup
API_KEY = 'N012340123401234'
API_SECRET = '01234012340123401234'
   
sender = Sender(API_KEY, API_SECRET)
sender.send(
    '01012341234',  # from
    '01043214321',  # to
    'Test Message'
)