https://github.com/sveetch/cmsplugin-feedparser
django-feedparser plugin for DjangoCMS
https://github.com/sveetch/cmsplugin-feedparser
Last synced: 11 months ago
JSON representation
django-feedparser plugin for DjangoCMS
- Host: GitHub
- URL: https://github.com/sveetch/cmsplugin-feedparser
- Owner: sveetch
- License: mit
- Created: 2015-12-15T17:35:13.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-10T23:15:33.000Z (almost 10 years ago)
- Last Synced: 2024-11-21T00:11:25.701Z (over 1 year ago)
- Language: Python
- Size: 9.77 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
.. _Django: https://www.djangoproject.com/
.. _DjangoCMS: https://www.django-cms.org
.. _django-feedparser: https://github.com/sveetch/django-feedparser
====================
cmsplugin-feedparser
====================
`django-feedparser`_ plugin for DjangoCMS
.. Warning::
Version 0.3.0 has dropped support for ``DjangoCMS<3.3.1``.
Links
*****
* Download his `PyPi package `_;
* Clone it on his `repository `_;
Requires
********
* Django >= 1.8;
* `DjangoCMS`_ >= 3.3.1;
* `django-feedparser`_ >= 0.1.2;
Install
*******
First install the package ::
pip install cmsplugin-feedparser
Add it to your installed Django apps in settings : ::
INSTALLED_APPS = (
...
'django_feedparser',
'cmsplugin_feedparser',
...
)
Then import their settings: ::
from django_feedparser.settings import *
from cmsplugin_feedparser.settings import *
Finally install plugin models in your database using migrations: ::
python manage.py migrate
.. Note::
Note than since version ``0.2.0``, this plugin has moved to Django migrations system, previous South migration will be freezed in their current state and have been moved to ``south_migrations`` directory as recommended since `South 1.0.x `_.