{"id":17326850,"url":"https://github.com/guptarohit/smspy","last_synced_at":"2025-08-16T21:14:35.023Z","repository":{"id":57468790,"uuid":"120198512","full_name":"guptarohit/smspy","owner":"guptarohit","description":"A minimalistic python wrapper for way2sms, Send up-to 100 free SMS in India daily. :tada: :sparkles:","archived":false,"fork":false,"pushed_at":"2018-02-27T15:55:43.000Z","size":41,"stargazers_count":11,"open_issues_count":1,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-12T00:43:42.874Z","etag":null,"topics":["automation","free-sms","python","scraper","sms-api","utility","way2sms"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/guptarohit.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-02-04T15:45:48.000Z","updated_at":"2024-09-05T15:31:55.000Z","dependencies_parsed_at":"2022-09-10T02:00:55.513Z","dependency_job_id":null,"html_url":"https://github.com/guptarohit/smspy","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/guptarohit/smspy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guptarohit%2Fsmspy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guptarohit%2Fsmspy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guptarohit%2Fsmspy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guptarohit%2Fsmspy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/guptarohit","download_url":"https://codeload.github.com/guptarohit/smspy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guptarohit%2Fsmspy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270771856,"owners_count":24642376,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-16T02:00:11.002Z","response_time":91,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","free-sms","python","scraper","sms-api","utility","way2sms"],"created_at":"2024-10-15T14:17:41.165Z","updated_at":"2025-08-16T21:14:35.002Z","avatar_url":"https://github.com/guptarohit.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":".. -*-restructuredtext-*-\n\nSMSpy\n=====\nA minimalistic python wrapper for sending free sms via website `way2sms \u003chttp://www.way2sms.com\u003e`_.\n\n.. image:: https://img.shields.io/badge/Made%20with-Python-1f425f.svg\n    :target: https://www.python.org/\n\n.. image:: https://img.shields.io/pypi/v/smspy.svg\n    :target: https://pypi.python.org/pypi/smspy\n    \n.. image:: https://app.fossa.io/api/projects/git%2Bgithub.com%2Fguptarohit%2Fsmspy.svg?type=shield\n    :target: https://app.fossa.io/projects/git%2Bgithub.com%2Fguptarohit%2Fsmspy?ref=badge_shield\n    :alt: FOSSA Status\n    \n.. image:: https://travis-ci.org/guptarohit/smspy.svg?branch=master\n    :target: https://travis-ci.org/guptarohit/smspy\n\n.. image:: https://img.shields.io/pypi/l/smspy.svg\n    :target: https://github.com/guptarohit/smspy/blob/master/LICENSE\n\n.. image:: https://img.shields.io/pypi/pyversions/smspy.svg\n    :target: https://pypi.python.org/pypi/smspy\n\n\nInstallation\n------------\n\n::\n\n    $ pip install -U git+git://github.com/guptarohit/smspy.git\n\nUsage\n-----\n\n\nSend SMS\n^^^^^^^^\n\n.. code:: python\n\n    from smspy import Way2sms\n\n    w2s = Way2sms()\n\n    w2s.login(USERNAME, PASSWORD)\n\n    w2s.send(MOBILE_NUMBER, MESSAGE)\n\n    w2s.logout()\n\n\nSchedule SMS\n^^^^^^^^^^^^\n\n.. code:: python\n\n    from smspy import Way2sms\n\n    w2s = Way2sms()\n\n    w2s.login(USERNAME, PASSWORD)\n\n    w2s.schedule(MOBILE_NUMBER, MESSAGE, DATE, TIME)\n    # DATE should be in format DD/MM/YYYY and TIME in 24h HH:mm\n\n    w2s.logout()\n\n\nCheck History of sent messages\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. code:: python\n\n    from smspy import Way2sms\n\n    w2s = Way2sms()\n\n    w2s.login(USERNAME, PASSWORD)\n\n    headers, data = w2s.history(DATE)\n    # DATE should be in format DD/MM/YYYY\n\n    print(headers, data)\n\n    w2s.logout()\n\n\nCheck Scheduled messages\n^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. code:: python\n\n    from smspy import Way2sms\n\n    w2s = Way2sms()\n\n    w2s.login(USERNAME, PASSWORD)\n\n    headers, data = w2s.scheduled_messages(DATE)\n    # DATE should be in format DD/MM/YYYY\n\n    print(headers, data)\n\n    w2s.logout()\n\n\nCheck Quota left\n^^^^^^^^^^^^^^^^\n\n.. code:: python\n\n    from smspy import Way2sms\n\n    w2s = Way2sms()\n\n    w2s.login(USERNAME, PASSWORD)\n\n    msgs_remaining=w2s.quota_left()\n\n    print(msgs_remaining)\n\n    w2s.logout()\n\n\nContributing\n------------\n\nFeel free to make a pull request! :octocat:\n\nLicense\n-------\n\n.. image:: https://app.fossa.io/api/projects/git%2Bgithub.com%2Fguptarohit%2Fsmspy.svg?type=large\n    :target: https://app.fossa.io/projects/git%2Bgithub.com%2Fguptarohit%2Fsmspy?ref=badge_large\n    :alt: FOSSA Status\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguptarohit%2Fsmspy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguptarohit%2Fsmspy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguptarohit%2Fsmspy/lists"}