Watch "URL Implementation For RSS FEED in django| python | part 3" on YouTube

2020-05-03 Thread Anonymous Patel
https://youtu.be/oCSMWSp1_UI Its a series or playlist where they provide how to create rss feed in django website Raj Patel -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails fro

Watch "What is RSS feed How to create RSS feed in Django | part 2" on YouTube

2020-05-01 Thread Anonymous Patel
https://youtu.be/2fB4PN-WRcQ If you are facing issue in creating RSS feed in django .. Here is tutorial they are coming up with. And they help Developers like us to solve many problems. Follow there telegram channel where usefull and updated problems solution updates come always. @*errormania

Possible RSS-Feed-bug related to Debian Bug #926074

2019-05-29 Thread c . buhtz
I am not a Django user neither I have an idea what it is. I found a problem with the RSS-Feeds of the Debian-Package-Tracker which runs with a "Django object". They told me to open a bug report on Django for this but I am not the user. And I don't know technical details. It would be nice if s

Re: Modify Django Community Blog RSS feed url

2016-11-15 Thread Dávid Főző
Thank you! Really appreciate it. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to

Re: Modify Django Community Blog RSS feed url

2016-11-14 Thread Tim Graham
Done. On Monday, November 14, 2016 at 7:03:43 AM UTC-5, Dávid Főző wrote: > > Hello fellow Djangonauts, > > I submitted rss feed of my website as a Django Blog. Now, I would like to > modify it to make sure only selected articles will be submitted. > > If you have authority

Modify Django Community Blog RSS feed url

2016-11-14 Thread Dávid Főző
Hello fellow Djangonauts, I submitted rss feed of my website as a Django Blog. Now, I would like to modify it to make sure only selected articles will be submitted. If you have authority in this, I would like to change this: https://www.davidfozo.com/blog/feeds/rss/ to this: https

Re: help with rss feed ImproperlyConfigured

2012-07-07 Thread psychok7
anyone?? On Saturday, July 7, 2012 3:52:52 AM UTC+1, psychok7 wrote: > > hi, i am trying to implement the syndicate feed framework simple rss with > my program, but i get a ImproperlyConfigured at /latest/feed/ > > Give your Debt class a get_absolute_url() method, or define an item_link() > meth

Re: help with rss feed ImproperlyConfigured

2012-07-06 Thread psychok7
on my feed.py i have class LatestEntriesFeed(Feed): title = "Chicagocrime.org site news" link = "/blog/" description = "Recent Posts" def items(self): return Debt.objects.all().order_by('-creation_date')[:10] can anyone help me? On Saturday, July 7, 2012 3:52:52 AM UTC

help with rss feed ImproperlyConfigured

2012-07-06 Thread psychok7
hi, i am trying to implement the syndicate feed framework simple rss with my program, but i get a ImproperlyConfigured at /latest/feed/ Give your Debt class a get_absolute_url() method, or define an item_link() method in your Feed class. I know i am supposed to create a get_absolute_url in my D

Re: RSS Feed

2012-06-08 Thread armagan
I solved the problem. I used application's urls.py not project's urls.py and update urls like (r'^rss/$', LatestEntriesFeed()). Thanks for help. On Jun 8, 3:45 pm, Diego pascual lopez wrote: > On Fri, Jun 8, 2012 at 2:23 PM, armagan wrote: > > No, I just realized. But I tried import 'from proj

Re: RSS Feed

2012-06-08 Thread Diego pascual lopez
On Fri, Jun 8, 2012 at 2:23 PM, armagan wrote: > No, I just realized. But I tried import 'from projem.blogum.views > import LatestEntriesFeed' and I've had a 404 error. I guess, i have a > url error. > > #My RSS class > class LatestEntriesFeed(Feed): >title = "site news" >link = "/projele

Re: RSS Feed

2012-06-08 Thread armagan
No, I just realized. But I tried import 'from projem.blogum.views import LatestEntriesFeed' and I've had a 404 error. I guess, i have a url error. #My RSS class class LatestEntriesFeed(Feed): title = "site news" link = "/projeler/haberler/" description = "Updates on changes and additio

Re: RSS Feed

2012-06-08 Thread bruno desthuilliers
On Jun 8, 1:53 pm, armagan wrote: > Hi, > > I'm trying to implemente an rss to my project. I have done a simple > example in django doc. Which one ? url, please. > But I have an error in urls.py. > > from 'blogum.feeds import LatestEntriesFeed' ==> I've imported this, I > have an error  'No modu

Re: RSS Feed

2012-06-08 Thread Diego pascual lopez
Hi, Do you have in your blogum directory a feeds.py? On Fri, Jun 8, 2012 at 1:53 PM, armagan wrote: > Hi, > > I'm trying to implemente an rss to my project. I have done a simple > example in django doc. But I have an error in urls.py. > > from 'blogum.feeds import LatestEntriesFeed' ==> I've i

RSS Feed

2012-06-08 Thread armagan
Hi, I'm trying to implemente an rss to my project. I have done a simple example in django doc. But I have an error in urls.py. from 'blogum.feeds import LatestEntriesFeed' ==> I've imported this, I have an error 'No module named feeds'. Thanks in advance for any help provided. Armağan -- You

Re: Editing djangoproject Community RSS feed info

2011-09-18 Thread Russell Keith-Magee
On Mon, Sep 19, 2011 at 4:08 AM, Subhranath Chunder wrote: > I just added my tech blog to > the https://www.djangoproject.com/community/ page with feeds > from http://scratch-blog.appspot.com/feed/rss/ > Can someone with admin privileges, please edit and change the title to > 'Subhranath Chunder' 

Editing djangoproject Community RSS feed info

2011-09-18 Thread Subhranath Chunder
I just added my tech blog to the https://www.djangoproject.com/community/ page with feeds from http://scratch-blog.appspot.com/feed/rss/ Can someone with admin privileges, please edit and change the title to 'Subhranath Chunder' from the current 'ScratchBlog - The Scratch Blog'. I had simply put t

Re: rss feed question

2011-06-24 Thread Kevin Anthony
http://www.feedparser.org/ On Sat, Jun 25, 2011 at 12:21 AM, raj wrote: > I was trying to follow the following guide: > https://docs.djangoproject.com/en/dev/ref/contrib/syndication/?from=olddocs > and I had some questions. > > I'm not quite sure, but it seems like this guide is showing how to >

rss feed question

2011-06-24 Thread raj
I was trying to follow the following guide: https://docs.djangoproject.com/en/dev/ref/contrib/syndication/?from=olddocs and I had some questions. I'm not quite sure, but it seems like this guide is showing how to create your own feed. How would I go about retrieving the feed instead of creating it

Re: Django RSS feed consolidator?

2010-12-22 Thread Christophe Pettus
Like, say, the one at: http://www.djangoproject.com/community/ You know, something like that? Never mind! On Dec 22, 2010, at 3:04 PM, Christophe Pettus wrote: > Is there a feed consolidator for Django-related RSS feeds? One exists for > the PostgreSQL project, and it's pretty nice t

Django RSS feed consolidator?

2010-12-22 Thread Christophe Pettus
Is there a feed consolidator for Django-related RSS feeds? One exists for the PostgreSQL project, and it's pretty nice to keep track of what PG-related stuff is being written by various bloggers. If not, is there interest in such a thing? -- -- Christophe Pettus x...@thebuild.com -- You

Re: Weekly rss feed

2010-06-21 Thread TheIvIaxx
The problem with the first is that users would get a bunch of single items whenever they were added to the DB. I need to give them a digest of what happened that week. I had thought of the range idea, but then you're hitting the DB every hour all week for a single update which doesn't sound corre

Re: Weekly rss feed

2010-06-21 Thread Andy McKay
On 2010-06-21, at 5:48 PM, TheIvIaxx wrote: > I was wondering how to create a weekly feed for django. Lets say i > have a table of objects that gets added to all week long. I'd like to > allow people to subscribe to a feed that would give a single update > with all items that were added that wee

Weekly rss feed

2010-06-21 Thread TheIvIaxx
Hello all, i tried searching for a solution to this but didn't find it. If it's answered somewhere, please point me in the right direction :) I was wondering how to create a weekly feed for django. Lets say i have a table of objects that gets added to all week long. I'd like to allow people to

RSS feed generation

2010-04-30 Thread ganesh
Hello, My project is a simple wikipedia appication. I have 2 classes in models namely Content and Tag. I am trying to generate a RSS feed for this application. Whenever the database is empty I am able to view a blank page when I access the RSS link, however as soon as I enter content into the

Re: Problem with RSS feed. (Long Post)

2010-04-21 Thread Nuno Maltez
As you probably have found out by now, since you're using 1.1, just creat the templates feed/_description.html as mentioned in the docs for version 1.1: http://docs.djangoproject.com/en/1.1/ref/contrib/syndication/ On Wed, Apr 14, 2010 at 5:44 PM, Ronnie Betzen wrote: >> Have you tried the obv

Re: Problem with RSS feed. (Long Post)

2010-04-14 Thread Ronnie Betzen
> Have you tried the obvious - do what the Exception tells you and add a > "get_absolute_url" method to the model of the objects published on the > feed, or an item_link in your Feed class? Well, duh. This teaches me not to be reading documentation at 2 am while I'm sleepy. I somehow looked straig

Re: Problem with RSS feed. (Long Post)

2010-04-09 Thread Nuno Maltez
> Exception Type: ImproperlyConfigured at /feeds/latest/ > Exception Value: Give your Entry class a get_absolute_url() method, or > define an item_link() method in your Feed class. Have you tried the obvious - do what the Exception tells you and add a "get_absolute_url" method to the model of the

Problem with RSS feed. (Long Post)

2010-04-09 Thread rbetzen
Been working on this one for three days now. I'm stumped. I've created my rss feed from the example listed in The Definitive Guide to Django: Web Development Done Right. Unfortunately, I'm getting an ImproperlyConfigured error. I've been looknig on the Djangoproject.com site

Replacing description field in syndication RSS feed

2009-10-14 Thread simong
I can create an RSS feed using the documentation for syndication and have tried to extend it using the MediaRSS format as described here: http://www.djangosnippets.org/snippets/1648/. This works up to a point: I'm testing with Firefox and it still doesn't display the media: exten

Re: Adding RSS Feed to planet Django

2009-05-05 Thread Kai Diefenbach
> The right person to email for that is Jacob Kaplan-Moss, whose email is at > the bottom of that page. I know, but as I wrote above I had no success sending emails to his email. Kai --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: Adding RSS Feed to planet Django

2009-05-05 Thread Alex Gaynor
On Tue, May 5, 2009 at 8:38 AM, Kai Diefenbach wrote: > > Hi guys, > > (sorry, if this is the wrong place, I've sent already two emails to > the provided address in the last couple of weeks without feedback) > > is somebody out there, who is able to ad

Adding RSS Feed to planet Django

2009-05-04 Thread Kai Diefenbach
Hi guys, (sorry, if this is the wrong place, I've sent already two emails to the provided address in the last couple of weeks without feedback) is somebody out there, who is able to adding an RSS-Feed to http://www.djangoproject.com/community/. The URL of the feed is: http://www.getlf

Re: How to reverse lookup a RSS feed url?

2009-03-02 Thread Rama Vadakattu
On Mar 2, 1:10 pm, Malcolm Tredinnick wrote: > On Mon, 2009-03-02 at 00:02 -0800, Rama Vadakattu wrote: > > Thanks Malcolm.Understood very clearly. > > > Following the same approach i have used following code in my templates > > {% url djorum_feed_url   category.getCategoryString %} > > > categ

Re: How to reverse lookup a RSS feed url?

2009-03-02 Thread Malcolm Tredinnick
On Mon, 2009-03-02 at 00:02 -0800, Rama Vadakattu wrote: > Thanks Malcolm.Understood very clearly. > > Following the same approach i have used following code in my templates > {% url djorum_feed_url category.getCategoryString %} > > category.getCategoryString is the function which returns cate

Re: How to reverse lookup a RSS feed url?

2009-03-02 Thread Rama Vadakattu
Thanks Malcolm.Understood very clearly. Following the same approach i have used following code in my templates {% url djorum_feed_url category.getCategoryString %} category.getCategoryString is the function which returns category string "category/catgory.id" Regards rama BUt how should i us

Re: How to reverse lookup a RSS feed url?

2009-02-27 Thread Malcolm Tredinnick
On Fri, 2009-02-27 at 01:20 -0800, Rama Vadakattu wrote: > i am using django feed syndication framework. > > 1) .in urls.py > > feeds = { >'category': LatestTopicsByCategory, > } > > urlpatterns += patterns('', > url(r'^feeds/(?P.*)/$', > 'django.contrib.syndication.v

How to reverse lookup a RSS feed url?

2009-02-27 Thread Rama Vadakattu
i am using django feed syndication framework. 1) .in urls.py feeds = { 'category': LatestTopicsByCategory, } urlpatterns += patterns('', url(r'^feeds/(?P.*)/$', 'django.contrib.syndication.views.feed' , {'feed_dict': feeds},name='djorum_feed_url') ,

Re: help for RSS Feed

2008-11-03 Thread Jarek Zgoda
Wiadomość napisana w dniu 2008-11-03, o godz. 11:59, przez please smile: > Can anybody please send me a small RSS feed application using django. > Thanks. Google code has plenty of them. -- We read Knuth so you don't have to. - Tim Peters Jarek Zgoda, R&D, Redefine [

help for RSS Feed

2008-11-03 Thread please smile
Hi All , Can anybody please send me a small RSS feed application using django. Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to dj

RSS feed only returning one result, but table has 10 results.

2008-10-25 Thread Darthmahon
Hey Guys, Got a very strange thing going on with the RSS feed framework in Django. Here is the code for one feed: * class LatestNotes(Feed): title = "Title" link = "Link" description = "Description" def items

Re: Using Django Syndication for RSS Feed

2008-07-20 Thread Julien Phalip
Just found this via google: http://lexhair.wordpress.com/2007/08/29/rss-feeds-and-internet-explorer-6/ Apparently IE 6 and RSS are not friends... On Jul 20, 3:23 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I'm trying to generate RSS feed for my site us

Using Django Syndication for RSS Feed

2008-07-19 Thread [EMAIL PROTECTED]
I'm trying to generate RSS feed for my site using Django's syndication framework. I'm having 2 issues: 1) While the generated feed gets displayed correctly in Firefox, Internet explorer v6x presents a 'save file as' prompt - like it doesnt recognize the incoming data a

RSS feed dont work well with Internet Explorer

2008-07-18 Thread [EMAIL PROTECTED]
I use the Django syndication to generate RSS feeds for my site. The feed is visible correctly in Firefox but Internet explorer v6x cant really interpret this feed and tries to save it as a file. I have tried using both - the RssFeed as well as the Atom1Feed I noticed that the rss generated from

Re: list index out or range,getting rss feed urls out of db

2008-05-29 Thread sebastian stephenson
#x27;entries']: # entries are all the items under a >>> particular feed >>> it, created = FeedItem.objects.get_or_create(title=item.title, >>> link=item.link, desc=item.description, date=item.date_parsed, >>> id=item.id, feed=feed) >>> >&g

Re: list index out or range,getting rss feed urls out of db

2008-05-29 Thread Eric Abrahamsen
) >> >> Repeat the above for every url in your list of feed urls. Note: this >> code goes in your standalone script running on a cron job, NOT in >> your >> views or whatever other normal part of your django code base. That >> will put RSS feed items into your data

Re: list index out or range,getting rss feed urls out of db

2008-05-29 Thread sebastian stephenson
.title, > link=item.link, desc=item.description, date=item.date_parsed, > id=item.id, feed=feed) > > Repeat the above for every url in your list of feed urls. Note: this > code goes in your standalone script running on a cron job, NOT in your > views or whatever other normal part of

Re: list index out or range,getting rss feed urls out of db

2008-05-28 Thread Eric Abrahamsen
this code goes in your standalone script running on a cron job, NOT in your views or whatever other normal part of your django code base. That will put RSS feed items into your database, your views.py pulls them out again as per normal django methods: feed = Feed.objects.get(

Re: list index out or range,getting rss feed urls out of db

2008-05-28 Thread sebey
please much suggestions thank you On May 28, 4:37 pm, sebastian stephenson <[EMAIL PROTECTED]> wrote: > great finally some help thank you so much! > On 28 May 2008, at 15:20, Rajesh Dhawan wrote: > > > > > > > On May 28, 6:30 am, sebey <[EMAIL PROTECTED]> wrote: > >> from django.http import HttpR

Re: list index out or range,getting rss feed urls out of db

2008-05-28 Thread sebastian stephenson
great finally some help thank you so much! On 28 May 2008, at 15:20, Rajesh Dhawan wrote: > > > > On May 28, 6:30 am, sebey <[EMAIL PROTECTED]> wrote: >> from django.http import HttpResponse >> import feedparser >> from ubermicro.shows.models import show >> >> def show_page(request): >> """th

Re: list index out or range,getting rss feed urls out of db

2008-05-28 Thread Rajesh Dhawan
On May 28, 6:30 am, sebey <[EMAIL PROTECTED]> wrote: > from django.http import HttpResponse > import feedparser > from ubermicro.shows.models import show > > def show_page(request): >     """this is where we take what we need form the rss feeds in the > data base""" >     query = show.objects.fi

list index out or range,getting rss feed urls out of db

2008-05-28 Thread sebey
/";) podcast = feedparser.parse(query) #show_about = podcast.feed.description show_latest_title = podcast.entries[0].title #show_latest = podcast.entries[0].description return HttpResponse(show_latest_title) ok so what this code is doing is its getting the rss feed from th

list index out or range,getting rss feed urls out of db

2008-05-28 Thread sebey
from django.http import HttpResponse import feedparser from ubermicro.shows.models import show def show_page(request): """this is where we take what we need form the rss feeds in the data base""" query = show.objects.filter(show_feed__contains="http://";) podcast = feedparser.parse(qu

Re: RSS feed reader in Python

2007-10-02 Thread Nis Jørgensen
stanleypark skrev: > We just finiched a really cool RSS feed news reader. I need people > comments on it. > here is the link of the web site. > I see no link at this point in your post. Anyway, who are "we"? > If you wish to know more about RSS feeds here is a group l

RSS feed reader in Python

2007-09-30 Thread stanleypark
We just finiched a really cool RSS feed news reader. I need people comments on it. here is the link of the web site. If you wish to know more about RSS feeds here is a group link that I just started. http://groups.google.com/group/adsense-and-rss-feeds/web/netsplorer-com?hl=en all the best to

Re: RSS Feed Generation

2007-02-28 Thread Jacob Kaplan-Moss
On 2/28/07, VirusRaja <[EMAIL PROTECTED]> wrote: > Below is my class to generate rss feed for a list > Which is an erroro "class a get_absolute_url() method, or define an > item_link() method in your Feed class." > > Can any one help me with this. The error message

RSS Feed Generation

2007-02-28 Thread VirusRaja
Hi all Below is my class to generate rss feed for a list Which is an erroro "class a get_absolute_url() method, or define an item_link() method in your Feed class." Can any one help me with this. if you send RSS generating code is much appreciated. Thanx Pra

Re: Non-Django content on the RSS feed?

2006-09-02 Thread James Bennett
On 9/2/06, Don Arbow <[EMAIL PROTECTED]> wrote: > Is there any reason why XBox 360 and Java libraries articles are > posted on the community RSS feeds page? Not to pick on a specific > blog (the author does occasionally write about Django and the blog is > written in Django). Is there a way to fil

Non-Django content on the RSS feed?

2006-09-02 Thread Don Arbow
Is there any reason why XBox 360 and Java libraries articles are posted on the community RSS feeds page? Not to pick on a specific blog (the author does occasionally write about Django and the blog is written in Django). Is there a way to filter out non-Django content from the feeds? Don

Re: preparing rss feed

2006-08-01 Thread Tyson Tate
f your Django project, just add a method to the post_save signal that's sent whenever that particular model is updated/saved. I don't think it's documented anywhere, but I did throw up some rudimentary documentation here: http://code.djangoproject.com/wiki/Signals As for outp

Re: preparing rss feed

2006-08-01 Thread James Bennett
On 8/1/06, a <[EMAIL PROTECTED]> wrote: > i hav a table in postgres and it has title and body columns, i want to > create a rss file on the fly when this table is updated wat is the best > way to get it done > thanks a lot Have you read the documentation for Django's syndication system? http://w

preparing rss feed

2006-08-01 Thread a
preparing rss feeds i hav a table in postgres and it has title and body columns, i want to create a rss file on the fly when this table is updated wat is the best way to get it done thanks a lot --~--~-~--~~~---~--~~ You received this message because you are subs

Re: rss feed, unique_id

2006-07-30 Thread Wiktor Grębla
Wiktor Grêbla napisa³(a): I've an impression that this message was not delivered to the list, although google finds it... > I was trying to add an rss feed with blog comments, and I'm mostly done, > here are some snippets i pasted on irc this morning: > > http://paste.e-s

rss feed, unique_id

2006-07-30 Thread Wiktor Grębla
Hi. I was trying to add an rss feed with blog comments, and I'm mostly done, here are some snippets i pasted on irc this morning: http://paste.e-scribe.com/934/ The problem is that i'd like to have unique_id for each item (comments don't have unique links, as they're &q

Re: UTF Encoding with rss feed

2005-10-17 Thread Eugene Lazutkin
ED]> wrote in message news:[EMAIL PROTECTED] > > Hello, > > when generating a rss feed, i get the following: > > --- > There's been an error: > > Traceback (most recent call last): > > File "/usr/lib/python2.3/site-packages/django/core/handlers/ba

UTF Encoding with rss feed

2005-10-17 Thread Andreas Neumeier
Hello, when generating a rss feed, i get the following: --- There's been an error: Traceback (most recent call last): File "/usr/lib/python2.3/site-packages/django/core/handlers/base.py", line 64, in get_response response = callback(request, **param_dict) File &quo