Re: RSS combinator
Is'n that something for yahoo pipes? http://pipes.yahoo.com/pipes/ Of course pipes are not django... Hinnack Am Freitag, 8. März 2013 04:24:39 UTC+1 schrieb Lachlan Musicman: > > Hola, > > Does anyone know of a django app that would take a number of rss feeds > >1 and turn it into a single blog feed/stream? > > Note, I don't want to create an rss feed of local content - I want to > create an amalgam of other feeds. > > eg: take > > https://www.djangoproject.com/rss/community/blogs/ > https://www.djangoproject.com/rss/community/links/ > https://www.djangoproject.com/rss/community/q-and-a/ > > and use it to create a single stream of (unique, for preference) > stories... > > > > Cheers > L. > > > -- > So the future isn't a boot stamping on a human face, forever. It's a > person in a beige business outfit advocating beige policies that > nobody wants (but nobody can quite articulate a coherent alternative > to) with a false mandate obtained by performing rituals of > representative democracy that offer as much actual choice as a > Stalinist one-party state. And resistance is futile, because if you > succeed in overthrowing the beige dictatorship, you will become that > which you opposed. > > > http://www.antipope.org/charlie/blog-static/2013/02/political-failure-modes-and-th.html > > -- 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 django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
Re: RSS combinator
On 3/7/13 7:24 PM, Lachlan Musicman wrote: Hola, > > Does anyone know of a django app that would take a number of rss > feeds and turn it into a single blog feed/stream? I'm using feedjack and I think it has features to amalgamate the feeds; I use it to subscribe to feeds then choose sets of feeds to display locally. - Tom -- 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 django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
Re: RSS combinator
I think feedparser is what I'm after - then it's just a matter of wrapping a template around the results. It could be done with any template really... https://pypi.python.org/pypi/feedparser https://code.google.com/p/feedparser/ Cheers L. On 8 March 2013 14:50, Shawn Milochik wrote: > I doubt there's a Django app for that -- it's not a problem for a Web > framework. You may be able to find a project that does this on Github > or Bitbucket. > > RSS feeds are just XML files. You need something that will parse the > XML from multiple files, then re-write one XML file containing the > items from each. If you can't find one, do a Google search for "Python > XML" (or replace Python with your language of choice) and find an XML > library and make one yourself. Once you understand the XML library you > choose, the rest is simple. > > -- > 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 django-users@googlegroups.com. > Visit this group at http://groups.google.com/group/django-users?hl=en. > For more options, visit https://groups.google.com/groups/opt_out. > > -- So the future isn't a boot stamping on a human face, forever. It's a person in a beige business outfit advocating beige policies that nobody wants (but nobody can quite articulate a coherent alternative to) with a false mandate obtained by performing rituals of representative democracy that offer as much actual choice as a Stalinist one-party state. And resistance is futile, because if you succeed in overthrowing the beige dictatorship, you will become that which you opposed. http://www.antipope.org/charlie/blog-static/2013/02/political-failure-modes-and-th.html -- 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 django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
Re: RSS combinator
I doubt there's a Django app for that -- it's not a problem for a Web framework. You may be able to find a project that does this on Github or Bitbucket. RSS feeds are just XML files. You need something that will parse the XML from multiple files, then re-write one XML file containing the items from each. If you can't find one, do a Google search for "Python XML" (or replace Python with your language of choice) and find an XML library and make one yourself. Once you understand the XML library you choose, the rest is simple. -- 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 django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
RSS combinator
Hola, Does anyone know of a django app that would take a number of rss feeds >1 and turn it into a single blog feed/stream? Note, I don't want to create an rss feed of local content - I want to create an amalgam of other feeds. eg: take https://www.djangoproject.com/rss/community/blogs/ https://www.djangoproject.com/rss/community/links/ https://www.djangoproject.com/rss/community/q-and-a/ and use it to create a single stream of (unique, for preference) stories... Cheers L. -- So the future isn't a boot stamping on a human face, forever. It's a person in a beige business outfit advocating beige policies that nobody wants (but nobody can quite articulate a coherent alternative to) with a false mandate obtained by performing rituals of representative democracy that offer as much actual choice as a Stalinist one-party state. And resistance is futile, because if you succeed in overthrowing the beige dictatorship, you will become that which you opposed. http://www.antipope.org/charlie/blog-static/2013/02/political-failure-modes-and-th.html -- 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 django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.