Metadata-Version: 2.1
Name: numspy
Version: 1.0
Summary: A python module for sending free sms as well as finding details of a mobile Number via website way2sms.
Home-page: https://github.com/bhattsameer/numspy
Author: Debugger
Author-email: UNKNOWN
License: UNKNOWN
Description: # Numspy 1.0 [![Python 3.x](https://img.shields.io/badge/Made%20with-Python3.x-1f425f.svg)](http://www.python.org/download/)
        
        <img src="https://github.com/bhattsameer/numspy/blob/master/logo.png" alt="NumSpy logo" width="150px" height="150px"/>
        
        A python module for sending free sms as well as finding details of mobile number via website 
        <a href="http://www.way2sms.com">Way2sms</a>
        
        
        # 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! :)
        
Keywords: Numspy Way2sms freesms futuresms sms numspy
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Topic :: Communications
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
