A simple re-usable Django application for sending and receiving messages from within django.
Project description
django_messages
A simple re-usable Django application for storing messages from within django that should support both Python 2 and 3. It only uses admin and ORM, no external-facing templates or pages.
To start, just puts them in a database. Eventually, might add ways to send them other places as well (email, message queue, etc.).
Installation
Assumptions:
- You already have a django project, and your database is configured and tested. If you don't, see the django tutorial for instructions on creating a django project.
- You are using a virtualenv, such that you don't have to run
pip
as root. If not, addsudo
in front ofpip
commands, or open a shell as root.
Dependencies
-
install python_utilites in your django project:
pip install python-utilities-jsm
-
install django_config and its requirements in your django project:
pip install django-basic-config
-
install this project. Either:
-
install using pip:
pip install django-basic-messages
-
or install from source:
cd <django_project_directory> git clone https://github.com/jonathanmorgan/django_messages.git pip install -r ./django_messages/requirements.txt
-
Configuration
Update settings.py
so that taggit
, django_config
and django_messages
are in your INSTALLED_APPS
. Use the new-style apps.py syntax for django_config
- 'django_config.apps.Django_ConfigConfig'
, and django_messages
- 'django_messages.apps.DjangoMessagesConfig'
. The result should look like:
INSTALLED_APPS = [
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
# Uncomment the next line to enable the admin:
'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
'taggit',
'django_config.apps.Django_ConfigConfig',
'django_messages.apps.DjangoMessagesConfig',
]
Usage
To create and retrieve messages:
# django_messages imports
from django_messages.models import Message
# set up message values
application = "unit_test"
message = "test message"
message_type = "test message type"
label = "test"
status = Message.STATUS_NEW
tag_list = [ "awesome", "test" ]
# create instance
# make instance
message_instance = Message.create_message( message,
message_type_IN = message_type,
application_IN = application,
label_IN = label,
tag_list_IN = tag_list,
status_IN = status )
# get all messages
message_qs = Message.objects.all()
# get message for application
message_qs = message_qs.filter( application = application )
message_instance = message_qs.get()
Database
In your django project folder, run the migrate
command to create database table(s) for newly installed application(s):
python manage.py migrate
Testing
The sourcenet project has a small but growing set of unit tests that once can auto-run. These tests use django's testing framework, built on top of the Python unittest
package.
Unit tests
Configuration
Database configuration
In order to run unit tests, your database configuration in settings.py
will need to be connecting to the database with a user who is allowed to create databases. When django runs unit tests, it creates a test database, then deletes it once testing is done.
- NOTE: This means the database user you use for unit testing SHOULD NOT be the user you'd use in production. The production database user should not be able to do anything outside a given database.
Running unit tests
In your django project folder, run the test
command to run unit tests for this project:
python manage.py test django_messages.tests
License
Copyright 2020 Jonathan Morgan
This file is part of https://github.com/jonathanmorgan/django_messages.
django_messages is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
django_messages is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with https://github.com/jonathanmorgan/django_messages. If not, see http://www.gnu.org/licenses/.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-basic-messages-1.0.3.tar.gz
.
File metadata
- Download URL: django-basic-messages-1.0.3.tar.gz
- Upload date:
- Size: 10.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bae297268da6f5023361081b436a01d6c94ebe059c1e4ddc3f02324082a618e2 |
|
MD5 | 0d51c41530984b111408f82da5cc3013 |
|
BLAKE2b-256 | 79bfe5826ddb6091252a86dc57bd1fc392cbee419627b2a37afd4626326161a6 |
File details
Details for the file django_basic_messages-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: django_basic_messages-1.0.3-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cdc0fac2dba58ccc287c74ed552d8b2eb431c3c03194d153995e6b0d73514b2e |
|
MD5 | 0d40bd0e0b768f7009c158f7be0dacb6 |
|
BLAKE2b-256 | 84deda19cf9d569ec88bc0eb824c03a91f8a309c660312793898aaa5d1db8fa8 |