{"id":38587747,"url":"https://github.com/nextsms/python-client","last_synced_at":"2026-01-17T08:21:39.440Z","repository":{"id":54288313,"uuid":"339018373","full_name":"nextsms/python-client","owner":"nextsms","description":"Python Package to easy the integration with nextsms SMS Gateway","archived":false,"fork":false,"pushed_at":"2021-05-19T20:04:22.000Z","size":24,"stargazers_count":5,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2023-03-09T08:51:24.904Z","etag":null,"topics":["nextsms","nextsms-python-client","nextsms-sms-gateway","python-nextsms","python-tanzania","sms","sms-api","sms-python-package","tanzania"],"latest_commit_sha":null,"homepage":"https://nextsms.github.io/python-client/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nextsms.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"patreon":"kalebujordan"}},"created_at":"2021-02-15T08:59:19.000Z","updated_at":"2022-05-08T12:39:20.000Z","dependencies_parsed_at":"2022-08-13T11:01:03.724Z","dependency_job_id":null,"html_url":"https://github.com/nextsms/python-client","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/nextsms/python-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextsms%2Fpython-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextsms%2Fpython-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextsms%2Fpython-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextsms%2Fpython-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nextsms","download_url":"https://codeload.github.com/nextsms/python-client/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextsms%2Fpython-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28504363,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T06:57:29.758Z","status":"ssl_error","status_checked_at":"2026-01-17T06:56:03.931Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["nextsms","nextsms-python-client","nextsms-sms-gateway","python-nextsms","python-tanzania","sms","sms-api","sms-python-package","tanzania"],"created_at":"2026-01-17T08:21:39.337Z","updated_at":"2026-01-17T08:21:39.410Z","avatar_url":"https://github.com/nextsms.png","language":"Python","funding_links":["https://patreon.com/kalebujordan","https://www.patreon.com/kalebujordan"],"categories":[],"sub_categories":[],"readme":"# [Nextsms Python Client](https://pypi.org/project/nextsms)\n\n[![Downloads](https://pepy.tech/badge/nextsms)](https://pepy.tech/project/nextsms)\n[![Downloads](https://pepy.tech/badge/nextsms/month)](https://pepy.tech/project/nextsms)\n[![Downloads](https://pepy.tech/badge/nextsms/week)](https://pepy.tech/project/nextsms)\n\nPython Package to easy the integration with nextsms SMS Gateway\n\n[![Become a patron](pictures/become_a_patron_button.png)](https://www.patreon.com/kalebujordan)\n\nGetting started \n---------------\n\nIn order to use this package you need to have the NextSMS Account, If you don't have one please take a look at [NextSMS](https://nextsms.co.tz), and get your *username* and *password* we gonna use them down below;\n\nInstall the libary from pip or directly\n\n```bash\npip install nextsms\n```\n\nInstalling directly from github\n\nClone this repository or Download a zip of the package  and then do this;\n\n```bash\ngit clone https://github.com/Kalebu/nextsms\ncd nextsms \nnextsms -\u003e python setup.py install \n```\n\nHere is an example on how to send an SMS with this package;\n\n```python\n\n\u003e\u003e import nextsms\n\u003e\u003e sender = nextsms('your username', 'your password')\n\u003e\u003e sender.sendsms(message='hello', recipients=['25575XXXXX','25565XXXX'], sender_id=\"NEXTSMS\")\n\n```\n\nBulky ?\n-------\nNextSms allows you to predefine all message you would like to send with variety of sender IDs and does the rest on how to successful send to all.\n\nHere an Example how you would do that with this package\n\n```python\n\n\u003e\u003e import nextsms\n\u003e\u003e sender = nextsms('KalebuJordan', 'kalebu@opensource') \n\u003e\u003e messages = [\n    {'from':'NEXTSMS', 'to':'255757294146', 'text':'hello'},\n    {'from':'NEXTSMS', 'to':'255754205561', 'text':'hello'}]           \n\u003e\u003e sender.send_bulk(messages)\n\n```\n\nEnvironment \n-----------\n\nBy default as you can create a nextsms instance it configure the environment to use production urls, If you wanna do on test sandbox here how;\n\n```python\n\n\u003e\u003e import nextsms\n\u003e\u003e sender = nextsms('KalebuJordan', 'kalebu@opensource')\n\u003e\u003e sender.sandbox = True \n\n```\n\nWanna Contribute ?\n------------------\nJust \n- Fork it \n- Create a new branch \n- Do your changes \n- Make a Pull request\n- You're merged congrats .!!!\n\n\nGive it a star \n--------------\n\nWas this useful to you ? Cool then give it a big star !\n\n\nConnect with me \n---------------\n\nI use a lot of twitter , [let's connect on twitter](twitter.com/j_kalebu) .\n\n\nIssues \n------\n\nEncountered issues while using the package, raise an issue and then we gonna work to fix it as soon as it takes\n\n```bash\nMore features coming soon\n```\n\nAll the Credits to [kalebu](github.com/kalebu)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnextsms%2Fpython-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnextsms%2Fpython-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnextsms%2Fpython-client/lists"}