{"id":36634395,"url":"https://github.com/comilio/python-sms-send","last_synced_at":"2026-01-12T09:44:43.547Z","repository":{"id":62563929,"uuid":"115121399","full_name":"comilio/python-sms-send","owner":"comilio","description":"Python client library to send SMS using Comilio SMS Gateway","archived":false,"fork":false,"pushed_at":"2018-08-27T11:09:56.000Z","size":5,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-12T07:57:56.206Z","etag":null,"topics":["pypi-packages","python","python-library","sms","sms-api","sms-client","sms-messages","sms-sdk"],"latest_commit_sha":null,"homepage":null,"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/comilio.png","metadata":{"files":{"readme":"README.md","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":"2017-12-22T14:16:00.000Z","updated_at":"2018-08-27T11:09:57.000Z","dependencies_parsed_at":"2022-11-03T16:00:30.559Z","dependency_job_id":null,"html_url":"https://github.com/comilio/python-sms-send","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/comilio/python-sms-send","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/comilio%2Fpython-sms-send","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/comilio%2Fpython-sms-send/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/comilio%2Fpython-sms-send/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/comilio%2Fpython-sms-send/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/comilio","download_url":"https://codeload.github.com/comilio/python-sms-send/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/comilio%2Fpython-sms-send/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28337755,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T06:09:07.588Z","status":"ssl_error","status_checked_at":"2026-01-12T06:05:18.301Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["pypi-packages","python","python-library","sms","sms-api","sms-client","sms-messages","sms-sdk"],"created_at":"2026-01-12T09:44:43.482Z","updated_at":"2026-01-12T09:44:43.535Z","avatar_url":"https://github.com/comilio.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Comilio Python SMS Send\n\nPython client module to send SMS messages using Comilio SMS Gateway.\n\nTo use this library, you must have a valid account on https://www.comilio.it.\n\n**Please note** SMS messages sent with this library will be deducted by your Comilio account credits.\n\nFor any questions, please contact us at tech@comilio.it\n\n# Installation\n\n```bash\n$ pip install comilio\n```\n\n# Send a message\n\n```py\nimport comilio\n\ncomilio_client = comilio.Client('username', 'password')\ncomilio_client.send('Hello!', '+393401234567')\n\n# returns:\n{\"message_id\": \"string\"}\n```\n\nBy default, client sends Classic type messages. You can change that per message:\n```py\ncomilio_client.send(text, type=comilio.SMART)\n```\nOr, you can change it globally:\n```py\ncomilio_client.set_default_type(comilio.SMART)\n```\nAvailable options are `comilio.CLASSIC`, `comilio.SMART` and `comilio.SMARTPRO`.\n\n# Setting default options\nYou might want to send bulk messages. We're making it slightly easier for you!\n`comilio_client.set_default_sender` and `comilio_client.set_default_recipients` are also available. Check examples for more informations.\n\n# Check status of message\n\n```py\ncomilio_client.status('A95455F7031140769030CCA81E764C5F')\n\n# returns:\n[\n  {\"phone_number\": \"+393401234567\", \"status\": \"Sent\"}\n]\n```\n\n# Handling insufficient credit\nIf you have insufficient credit, by default, you'll get a response like this one:\n```json\n{\"error\": \"Insufficient+credit\"}\n```\nIf you'd prefer to have an exception thrown in such case, set `raise_insufficient_credit` attribute to `True` on the initialized Client object:\n```py\ncomilio_client.raise_insufficient_credit = True\n```\n\n# More info\n\nYou can check out our website https://www.comilio.it\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcomilio%2Fpython-sms-send","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcomilio%2Fpython-sms-send","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcomilio%2Fpython-sms-send/lists"}