List Info

Thread: import opml file




import opml file
user name
2006-09-23 14:47:36
Upload to where? For what? There isn't really enough
information in
this and the previous posts in this thread to get any
sensible answer


--Jon

On 9/23/06, a <atempinbox.com> wrote:
> is there an easy way to upload opml files
> thanks
> Jon Atkinson wrote:
> > I've found that using XMLObject
> > (http://ww
w.freenet.org.nz/python/xmlobject/) is a simple way to
get
> > the feed information from an OPML feed, then you
can read the feed
> > however you like (e.g. with Feedparser
(www.feedparser.org)).
> > Something like this should get you started:
> >
> > from xmlobject import XMLFile
> >
> > opml =
XMLFile(path="/path/to/file.opml")
> >
> > for person in x.root.body.outline:
> >       print "Name: " +
str(person.text)
> >       print "Feed: " +
str(person.xmlUrl)
> >
> > --Jon
> >
> > On 26/08/06, a <atempinbox.com> wrote:
> > >
> > > feedjack is a lot of stuff, it exports opml
but it doesnt import opml
> > > any ideas for importing opml
> > > > > you might want to check out
FeedJack http://www.feedjack.org/
> > > > > it's done a lot of stuff in that
area.
> > > > >
> > > > > regards
> > > > > Ian
> > > > >
> > > > > On 24/08/2006, at 5:42 PM, a wrote:
> > > > >
> > > > > >
> > > > > > hi guys how do i import opml
file in django
> > > > > > using syndication
> > > > > >
> > > > > > i m tryin to build an rss
reader
> > > > > > thanks
> > > > > >
> > > > >
> > > > > --
> > > > > Ian Holsman
> > > > > IanZilbo.com
> > > > > http://personalinjury
focus.com/
> > >
> > >
> > > >
> > >
>
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "Django users" group.
To post to this group, send email to django-usersgooglegroups.com
To unsubscribe from this group, send email to
django-users-unsubscribegooglegroups.com
For more options, visit this group at http://gr
oups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

import opml file
user name
2006-09-30 02:30:05
Dear Jon Atkinson
upload to some server probably mine or some hosted site,
basically some
simple fileuploads
thanks

Jon Atkinson wrote:
> Upload to where? For what? There isn't really enough
information in
> this and the previous posts in this thread to get any
sensible answer
> 
>
> --Jon
>
> On 9/23/06, a <atempinbox.com> wrote:
> > is there an easy way to upload opml files
> > thanks
> > Jon Atkinson wrote:
> > > I've found that using XMLObject
> > > (http://ww
w.freenet.org.nz/python/xmlobject/) is a simple way to
get
> > > the feed information from an OPML feed, then
you can read the feed
> > > however you like (e.g. with Feedparser
(www.feedparser.org)).
> > > Something like this should get you started:
> > >
> > > from xmlobject import XMLFile
> > >
> > > opml =
XMLFile(path="/path/to/file.opml")
> > >
> > > for person in x.root.body.outline:
> > >       print "Name: " +
str(person.text)
> > >       print "Feed: " +
str(person.xmlUrl)
> > >
> > > --Jon
> > >
> > > On 26/08/06, a <atempinbox.com> wrote:
> > > >
> > > > feedjack is a lot of stuff, it exports
opml but it doesnt import opml
> > > > any ideas for importing opml
> > > > > > you might want to check out
FeedJack http://www.feedjack.org/
> > > > > > it's done a lot of stuff in
that area.
> > > > > >
> > > > > > regards
> > > > > > Ian
> > > > > >
> > > > > > On 24/08/2006, at 5:42 PM, a
wrote:
> > > > > >
> > > > > > >
> > > > > > > hi guys how do i import
opml file in django
> > > > > > > using syndication
> > > > > > >
> > > > > > > i m tryin to build an rss
reader
> > > > > > > thanks
> > > > > > >
> > > > > >
> > > > > > --
> > > > > > Ian Holsman
> > > > > > IanZilbo.com
> > > > > > http://personalinjury
focus.com/
> > > >
> > > >
> > > > >
> > > >
> >
> >


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "Django users" group.
To post to this group, send email to django-usersgooglegroups.com
To unsubscribe from this group, send email to
django-users-unsubscribegooglegroups.com
For more options, visit this group at http://gr
oups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

import opml file
user name
2006-09-30 07:47:58
A quick google search would have found you the following
post:

http:/
/groups.google.com/group/django-users/browse_frm/thread/3993
60004a8d0716/d6d355feecef7f7a?lnk=st&q=django+imagefield
+manipulator&rnum=4#d6d355feecef7f7a

May I also suggest reading:

ht
tp://www.catb.org/~esr/faqs/smart-questions.html

--Jon

On 9/30/06, a <atempinbox.com> wrote:
>
> Dear Jon Atkinson
> upload to some server probably mine or some hosted
site, basically some
> simple fileuploads
> thanks
>
> Jon Atkinson wrote:
> > Upload to where? For what? There isn't really
enough information in
> > this and the previous posts in this thread to get
any sensible answer
> > 
> >
> > --Jon
> >
> > On 9/23/06, a <atempinbox.com> wrote:
> > > is there an easy way to upload opml files
> > > thanks
> > > Jon Atkinson wrote:
> > > > I've found that using XMLObject
> > > > (http://ww
w.freenet.org.nz/python/xmlobject/) is a simple way to
get
> > > > the feed information from an OPML feed,
then you can read the feed
> > > > however you like (e.g. with Feedparser
(www.feedparser.org)).
> > > > Something like this should get you
started:
> > > >
> > > > from xmlobject import XMLFile
> > > >
> > > > opml =
XMLFile(path="/path/to/file.opml")
> > > >
> > > > for person in x.root.body.outline:
> > > >       print "Name: " +
str(person.text)
> > > >       print "Feed: " +
str(person.xmlUrl)
> > > >
> > > > --Jon
> > > >
> > > > On 26/08/06, a <atempinbox.com> wrote:
> > > > >
> > > > > feedjack is a lot of stuff, it
exports opml but it doesnt import opml
> > > > > any ideas for importing opml
> > > > > > > you might want to check
out FeedJack http://www.feedjack.org/
> > > > > > > it's done a lot of stuff
in that area.
> > > > > > >
> > > > > > > regards
> > > > > > > Ian
> > > > > > >
> > > > > > > On 24/08/2006, at 5:42
PM, a wrote:
> > > > > > >
> > > > > > > >
> > > > > > > > hi guys how do i
import opml file in django
> > > > > > > > using syndication
> > > > > > > >
> > > > > > > > i m tryin to build
an rss reader
> > > > > > > > thanks
> > > > > > > >
> > > > > > >
> > > > > > > --
> > > > > > > Ian Holsman
> > > > > > > IanZilbo.com
> > > > > > > http://personalinjury
focus.com/
> > > > >
> > > > >
> > > > > >
> > > > >
> > >
> > >
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "Django users" group.
To post to this group, send email to django-usersgooglegroups.com
To unsubscribe from this group, send email to
django-users-unsubscribegooglegroups.com
For more options, visit this group at http://gr
oups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

[1-3]

about | contact  Other archives ( Real Estate discussion Medical topics )