Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

django-sms-uz

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-sms-uz

SMS sending api for django

  • 1.0.1
  • PyPI
  • Socket score

Maintainers
1

=============================== Django send SMS using API(uz)

Quick start

  1. Create a new project
  2. pip install django-sms-uz==1.0.0, pip install djangorestframework and pip install requests
  3. Add the following to your settings.py file: INSTALLED_APPS = ( ... 'SMS', ... ) SMS_SETTINGS = {"SMS_URL": "http://91.204.239.44/broker-api/send","SMS_LOGIN": "LOGIN","SMS_PASSWORD": "PASSWORD"} set in your settings.py file
  4. Add the following to your urls.py file: path('sms/', include('SMS.urls')),
  5. Run python manage.py migrate to create the database tables
  6. Start your Django development server python manage.py runserver and go to http://localhost:8000/sms/send_sms/
  7. Enter your phone number and message and click send
  8. Check your terminal for a response and Django admin will tell you if it was successful or not
  9. You could use call from SMS.sms_utils import SMS_Sender to get the SMS class and send sms using by the way SMS_Sender(phone_number, message).SendSmsOneContact() it returns a response
  10. Don't forget to add SMS to your INSTALLED_APPS list and add SMS_SETTINGS = {"SMS_URL": "http://91.204.239.44/broker-api/send","SMS_LOGIN": "LOGIN","SMS_PASSWORD": "PASSWORD"} set in your settings.py file

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc