Wagtail app - with rss aggregator feature
Project description
snotra_rss
Wagtail extension for add RSS aggregator feature
Big news
Now full support Fever API ! Please configure your account in Feed account
Capture
installation
add the following line to your requirements.txt file :
git+https://github.com/olopost/snotra_rss.git
after that add snotra_rss to INSTALLED_APPS section of your wagtail settings:
INSTALLED_APPS = [
'home',
'snotra_rss',
'corbeille',
'search',
'wagtail.contrib.forms',
'wagtail.contrib.redirects',
'wagtail.embeds',
'wagtail.sites',
'wagtail.users',
'wagtail.snippets',
'wagtail.documents',
'wagtail.images',
'wagtail.search',
'wagtail.contrib.modeladmin',
'wagtail.contrib.table_block', # ajout support des tableaux
'wagtail.core',
'wagtail.admin',
'modelcluster',
'wagtail.contrib.styleguide',
'taggit',
'wagtail.contrib.postgres_search',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles'
]
after that add urls of snotra_rss to your urls section of your wagtail apps
from snotra_rss import urls as snotra_urls
urlpatterns = [
url(r'^django-admin/', admin.site.urls),
url(r'^admin/', include(wagtailadmin_urls)),
url(r'^documents/', include(wagtaildocs_urls)),
url(r'^search/$', search_views.search, name='search'),
# For anything not caught by a more specific rule above, hand over to
# Wagtail's page serving mechanism. This should be the last pattern in
# the list:
url(r'', include(wagtail_urls)),
url(r'', include(snotra_urls))
# Alternatively, if you want Wagtail pages to be served from a subpath
# of your site, rather than the site root:
# url(r'^pages/', include(wagtail_urls)),
]
Usage
- First create feeds in your admin section, you should see Rss feeds section
- after that, go to your app url /update uri
- entries is updated, you can see them in the rss entries section
good usage
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
snotra_rss-0.2.1.tar.gz
(12.0 kB
view details)
File details
Details for the file snotra_rss-0.2.1.tar.gz
.
File metadata
- Download URL: snotra_rss-0.2.1.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de989582bdcde8a57c09e8cf45d9033dc98a43b2d2a80a13511f1c76e46b5411 |
|
MD5 | 97f7590391f56b270467a3afccf7d3c3 |
|
BLAKE2b-256 | d78485b72e8f84520abf6ead2fd9fbe1841b0ac83652cd6f02c438b06b821b82 |