Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wooyek/django-multiinfo
Message queue for sending SMS messages through Polkomtel's MultiInfo service
https://github.com/wooyek/django-multiinfo
Last synced: 4 days ago
JSON representation
Message queue for sending SMS messages through Polkomtel's MultiInfo service
- Host: GitHub
- URL: https://github.com/wooyek/django-multiinfo
- Owner: wooyek
- License: other
- Created: 2018-09-02T18:12:07.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T02:51:37.000Z (about 2 years ago)
- Last Synced: 2024-12-22T09:41:22.318Z (20 days ago)
- Language: Python
- Size: 119 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
====================
MultiInfo for Django
====================Message queue for sending SMS messages through Polkomtel's MultiInfo service
.. image:: https://img.shields.io/pypi/v/django-multiinfo.svg
:target: https://pypi.python.org/pypi/django-multiinfo.. image:: https://img.shields.io/travis/wooyek/django-multiinfo.svg
:target: https://travis-ci.org/wooyek/django-multiinfo.. image:: https://readthedocs.org/projects/django-multiinfo/badge/?version=latest
:target: https://django-multiinfo.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
.. image:: https://coveralls.io/repos/github/wooyek/django-multiinfo/badge.svg?branch=develop
:target: https://coveralls.io/github/wooyek/django-multiinfo?branch=develop
:alt: Coveralls.io coverage.. image:: https://codecov.io/gh/wooyek/django-multiinfo/branch/develop/graph/badge.svg
:target: https://codecov.io/gh/wooyek/django-multiinfo
:alt: CodeCov coverage.. image:: https://api.codeclimate.com/v1/badges/0e7992f6259bc7fd1a1a/maintainability
:target: https://codeclimate.com/github/wooyek/django-multiinfo/maintainability
:alt: Maintainability.. image:: https://img.shields.io/github/license/wooyek/django-multiinfo.svg
:target: https://github.com/wooyek/django-multiinfo/blob/develop/LICENSE
:alt: License.. image:: https://img.shields.io/twitter/url/https/github.com/wooyek/django-multiinfo.svg?style=social
:target: https://twitter.com/intent/tweet?text=Wow:&url=https://github.com/wooyek/django-multiinfo
:alt: Tweet about this project.. image:: https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg
:target: https://saythanks.io/to/wooyek* Free software: GNU Affero General Public License v3
* Documentation: https://django-multiinfo.readthedocs.io.Features
--------* Pending :D
Demo
----To run an example project for this django reusable app, click the button below and start a demo serwer on Heroku
.. image:: https://www.herokucdn.com/deploy/button.png
:target: https://heroku.com/deploy
:alt: Deploy Django Opt-out example project to HerokuQuickstart
----------Install MultiInfo for Django::
pip install django-multiinfo
Add it to your `INSTALLED_APPS`:
.. code-block:: python
INSTALLED_APPS = (
...
'django_multiinfo.apps.DjangoMultiinfoConfig',
...
)Add MultiInfo for Django's URL patterns:
.. code-block:: python
import django_multiinfo.urls
urlpatterns = [
...
url(r'^', include(django_multiinfo.urls)),
...
]Running Tests
-------------Does the code actually work?
::
$ pipenv install --dev
$ pipenv shell
$ toxWe recommend using pipenv_ but a legacy approach to creating virtualenv and installing requirements should also work.
Please install `requirements/development.txt` to setup virtual env for testing and development.Credits
-------This package was created with Cookiecutter_ and the `wooyek/cookiecutter-django-app`_ project template.
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`wooyek/cookiecutter-django-app`: https://github.com/wooyek/cookiecutter-django-app
.. _`pipenv`: https://docs.pipenv.org/install