Skip to content

Instantly share code, notes, and snippets.

View zohairshaikh's full-sized avatar

Zohair Shaikh zohairshaikh

View GitHub Profile
@zohairshaikh
zohairshaikh / fusion_wrapper_usage.py
Last active October 2, 2019 17:47
Example Usage of Fusion Wrapper
##### SMS Example #####
fw = FusionWrapper()
payload = {'contact': 'XXXXXXXXXX', 'message': 'Hello World!', 'countryCode': '91'}
job_id = fw.sms(FusionWrapper.SMS.OTP, payload=payload)
)