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 <[EMAIL PROTECTED]> wrote:
> > is there an easy way to upload opml files
> > thanks
> > Jon Atkinson wrote:
> > > I've found that using XMLObject
> > > (http://www.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 <[EMAIL PROTECTED]> 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
> > > > > > [EMAIL PROTECTED]
> > > > > > http://personalinjuryfocus.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-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to