A RESTful API for managing collections of messaging content. Comes with a client and a fake.
$ virtualenv ve $ source ve/bin/activate (ve)$ pip install -r requirements.txt (ve)$ pip install -r requirements-dev.txt (ve)$ py.test --ds=testsettings contentstore/tests.py --cov=contentstore
Configuration
The following configuration (with dummy values replaced by real ones) needs to be added to settings.py to configure this app:
INSTALLED_APPS = [
# Usual Django stuff plus
# Third-party apps
'djcelery',
'rest_framework',
'rest_framework.authtoken',
'django_filters'
]
# REST Framework conf defaults
REST_FRAMEWORK = {
'DEFAULT_PERMISSION_CLASSES': ('rest_framework.permissions.IsAdminUser',),
'PAGINATE_BY': None,
'DEFAULT_AUTHENTICATION_CLASSES': (
'rest_framework.authentication.BasicAuthentication',
'rest_framework.authentication.TokenAuthentication',
),
'DEFAULT_PERMISSION_CLASSES': (
'rest_framework.permissions.IsAuthenticated',
),
'DEFAULT_FILTER_BACKENDS': ('rest_framework.filters.DjangoFilterBackend',)
}
Release Notes
0.1.7 - 2015-07-02 - Add filter for lang, fix broken message content URL in client (bump) 0.1.6 - 2015-07-01 - Publish package with missing init 0.1.5 - 2015-07-01 - Publish package with client and verified fake 0.1.4 - 2015-06-11 - Python 3 compat imports 0.1.3 - 2015-05-21 - Initial release
Release files for django-messaging-contentstore 0.1.7
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django-messaging-contentstore-0.1.7.tar.gz | 18.7 kB | Details |
Release files / django-messaging-contentstore-0.1.7.tar.gz
| Download URL | django-messaging-contentstore-0.1.7.tar.gz |
|---|---|
| Size | 18.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e1123a85ea8d45e6a25d7f7622ccdd10da7e4436868ea09caa7ca4caeb38daf3
|
|
BLAKE2b-256 checksum How to use checksums |
557c77258e63936d11954ae04273e985cabd95008a336dfcfab2e6014c1e58a6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |