{ "info": { "author": "Pavel Savchenko", "author_email": "pavel@modlinltd.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: ISC License (ISCL)", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4" ], "description": "===================\ndjango-feed-imports\n===================\n\nImport RSS and Atom feeds and save in the Django database.\n\nRequirements\n============\n\n* Django >= 1.4\n* Feedparser\n* `django.core.context_processors.request` context processor (for the template\n tag usage)\n\nInstallation\n============\n\nInstall from pypi::\n\n pip install django-feed-imports\n\nInstall from source with pip::\n\n pip install -e https://github/modlinltd/django-feed-imports/archive/master.zip#egg=feed_imports\n\nOr install from source:\n\n git clone https://github.com/modlinltd/django-feed-imports.git\n cd django_feed_imports\n python setup.py install\n\nAdd it the application to your ``INSTALLED_APPS`` setting::\n\n INSTALLED_APPS = (\n ...\n 'feed_imports',\n )\n\nRun `syncdb` and `migrate`::\n\n python manage.py syncdb\n python manage.py migrate\n\nUsage\n=====\n\n#. Configure the feeds sources in the Admin.\n#. Run the management command::\n\n python manage.py refresh_feeds\n\n *The management command should run as a cron job.*\n#. Using the template tag::\n\n {% load feed_items %}\n {% get_feed_items \"news\" 5 as items %}\n {# Get the last 5 items from the feed \"news\" in the current language #}\n {% for item in items %} {# do stuff ... #} {% endfor %}\n\n The `get_feed_items` returns the last `n` items from the provided feed in\n the language as set in the request, with a fallback to the default language.\n\n If settings.DEFAULT_LANGUAGE is not defined, English will be assumed.\n<<<<<<< HEAD\n\n#. To use `feed_item.get_absolute_url()` you must the define a url with the\n name `feed_item` in you `urls.py`. For Example::\n\n url(r'^feed_item/(?P.+)$',\n login_required(DetailView.as_view(model=FeedItem)),\n name='feed_item'),\n\n\nChangelog\n=========\n\n0.1.7\n#####\n\n* Clean up README and prepare for sharing\n\n0.1.6\n#####\n\n * add Python 3 support\n=======\n>>>>>>> parent of 68cd327... updated readme", "description_content_type": null, "docs_url": null, "download_url": "https://github.com/modlinltd/django_feed_imports/tarball/0.1.7", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/modlinltd/django_feed_imports", "keywords": "rss,atom,import,feed", "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "django-feed-imports", "package_url": "https://pypi.org/project/django-feed-imports/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/django-feed-imports/", "project_urls": { "Download": "https://github.com/modlinltd/django_feed_imports/tarball/0.1.7", "Homepage": "https://github.com/modlinltd/django_feed_imports" }, "release_url": "https://pypi.org/project/django-feed-imports/0.1.7/", "requires_dist": null, "requires_python": null, "summary": "Import RSS and Atom feeds and save in the database.", "version": "0.1.7" }, "last_serial": 1792089, "releases": { "0.1.7": [] }, "urls": [] }