python libraries are in general much much better than php libraries.
besides django itself, there's a wealth of usable and well maintained
libraries.
I've been working with gdata, and its very nice:
_youtubeGDataHost = 'gdata.youtube.com'
_youtubeFeedBase = '/feeds/api/'
import gdata
import gdata.youtube
import gdata.youtube.service
feed_url = str('http://' + _youtubeGDataHost + _youtubeFeedBase +
'playlists/%s' % playlist.playlist_id)
yt = gdata.youtube.service.YouTubeService()
feed = yt.GetYouTubeVideoFeed(feed_url)
for entry in feed.entry:
# we are now stepping through my youtube playlist ...
On Sun, Oct 26, 2008 at 10:24 PM, walterbyrd <[EMAIL PROTECTED]> wrote:
>
> I was going to go with zend framework, then I read about php using "\"
> character as it's namespace separator.
>
> A few things I like about the zend framework:
>
> 1) APIs to integrate with Google Apps. Although, I think I could do
> the same with python using gdata-python-client.
>
> 2) There is a fairly good library of php routines to connect on online
> php app with quickbooks. I am not sure if python has anything like
> that.
>
> The heavy-weight zend framework (18MB I think) has a lot of powerful
> features. But, I tend to prefer python to php.
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---