A python module for sending free sms as well as finding details of a mobile Number via website way2sms.
Project description
Numspy 1.0
A python module for sending free sms as well as finding details of mobile number via website Way2sms
Installation
pip3 install numspy
Usage
Send SMS
from Numspy import Way2sms
w2s = Way2sms()
w2s.login(USERNAME, PASSWORD)
w2s.send(MOBILE_NO, MSG)
w2s.logout()
Schedule SMS
from numspy import Way2sms
w2s = Way2sms()
w2s.login(USERNAME, PASSWORD)
w2s.schedule(MOBILE_NO, MSG, DATE, TIME)
# DATE should be in format DD/MM/YYYY and TIME in 24h HH:mm
w2s.logout()
Find Details of a Mobile number
from numspy import Way2sms
w2s = Way2sms()
w2s.login(USERNAME, PASSWORD)
w2s.details(MOBILE_NO)
w2s.logout()Contributing
Feel free to make a pull request! :)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
numspy-1.0.tar.gz
(4.5 kB
view hashes)
Built Distribution
numspy-1.0-py3-none-any.whl
(3.8 kB
view hashes)