## django-universal-sms
Send SMS from Django application using any SMS service provider just writing a single line of code.
## Features
- Support all standard SMS service provider
- SMS configuration from django admin panel
- There is SMS Log listing page
- You can also test SMS sending from admin panel
- Enough test coverage
## Installation
### pip
```bash
pip install django-universal-sms
```
## Install apps in `settings.py`
```python
INSTALLED_APPS = [
'django.contrib.admin',
'...',
'send_sms',
]
```
### migration
```bash
python manage.py migrate
```
## Configuration
- Go to admin panel by login with you admin credentials
- Find out **SMS Settings** menu under **SEND SMS** and click on it.
- There you'll see couple of fields to fill it up using SMS service provider credentials.
![Here is the example](/media/SMS_Settings.png).
- Carfefully compelete this part and save it.
## Usage
Whenever you need to send SMS just use following code:
```bash
from send_sms.views import send_sms
send_sms(['mobile_number'], 'Your Message')
```
For each successful sending SMS you can see the log from **SMS Log** under under **SEND SMS** menu.
## Support
Feel free to ask for the support over the email hizbul.ku[at]gmail.com.
Raw data
{
"_id": null,
"home_page": "https://github.com/hizbul25/django-send-sms",
"name": "django-universal-sms",
"maintainer": "Hizbul Bahar",
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": "hizbul.ku@gmail.com",
"keywords": "SMS,SEND SMS,Universal SMS,Django SMS",
"author": "Hizbul Bahar",
"author_email": "hizbul.ku@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/f5/de/bed476b2f5757d2c7ecaa331f8cc24bc4dbfc13b16fcdd3687d4af081b0f/django-universal-sms-1.0.6.tar.gz",
"platform": null,
"description": "## django-universal-sms\n\nSend SMS from Django application using any SMS service provider just writing a single line of code.\n\n## Features\n\n- Support all standard SMS service provider\n- SMS configuration from django admin panel\n- There is SMS Log listing page\n- You can also test SMS sending from admin panel\n- Enough test coverage\n\n## Installation\n\n### pip\n\n```bash\npip install django-universal-sms\n```\n\n## Install apps in `settings.py`\n\n```python\nINSTALLED_APPS = [\n 'django.contrib.admin',\n '...',\n 'send_sms',\n]\n```\n\n### migration\n\n```bash\npython manage.py migrate\n```\n\n## Configuration\n\n- Go to admin panel by login with you admin credentials\n- Find out **SMS Settings** menu under **SEND SMS** and click on it.\n- There you'll see couple of fields to fill it up using SMS service provider credentials.\n ![Here is the example](/media/SMS_Settings.png).\n- Carfefully compelete this part and save it.\n\n## Usage\n\nWhenever you need to send SMS just use following code:\n\n```bash\nfrom send_sms.views import send_sms\n\nsend_sms(['mobile_number'], 'Your Message')\n```\n\nFor each successful sending SMS you can see the log from **SMS Log** under under **SEND SMS** menu.\n\n## Support\n\nFeel free to ask for the support over the email hizbul.ku[at]gmail.com.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Send SMS using Django",
"version": "1.0.6",
"project_urls": {
"Homepage": "https://github.com/hizbul25/django-send-sms"
},
"split_keywords": [
"sms",
"send sms",
"universal sms",
"django sms"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "7c017f063c4442f50eca11ee019d05b8e4b415818d4ffe875ba374347993757e",
"md5": "b5a7db81e9ed9798e800d32d57127a37",
"sha256": "a793a4be2db7025a79cebab86de77c414145231c35b0bc479c13b704788efee2"
},
"downloads": -1,
"filename": "django_universal_sms-1.0.6-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b5a7db81e9ed9798e800d32d57127a37",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 8450,
"upload_time": "2023-09-09T08:05:13",
"upload_time_iso_8601": "2023-09-09T08:05:13.747416Z",
"url": "https://files.pythonhosted.org/packages/7c/01/7f063c4442f50eca11ee019d05b8e4b415818d4ffe875ba374347993757e/django_universal_sms-1.0.6-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f5debed476b2f5757d2c7ecaa331f8cc24bc4dbfc13b16fcdd3687d4af081b0f",
"md5": "e0bee5b9270d71720ba50547c39e92b4",
"sha256": "bcfc0f3117e63c8be86ce76966311685e9e9b4353b1c6a6bd5f7c5139371f2e8"
},
"downloads": -1,
"filename": "django-universal-sms-1.0.6.tar.gz",
"has_sig": false,
"md5_digest": "e0bee5b9270d71720ba50547c39e92b4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 6439,
"upload_time": "2023-09-09T08:05:15",
"upload_time_iso_8601": "2023-09-09T08:05:15.036355Z",
"url": "https://files.pythonhosted.org/packages/f5/de/bed476b2f5757d2c7ecaa331f8cc24bc4dbfc13b16fcdd3687d4af081b0f/django-universal-sms-1.0.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-09-09 08:05:15",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "hizbul25",
"github_project": "django-send-sms",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [],
"lcname": "django-universal-sms"
}