Hi folks, I am not able to change a date of my Picasa Web Albums album via Python API. Spent many hours with that and I am hopeless now. Code:
# set values remote_album.timestamp.text = str(get_published_as_timestamp()) remote_album.published.text = published + 'T04:01:01.000Z' # test before print remote_album.published print remote_album.published.text print remote_album.timestamp.text # save it remotely remote_album = picasa.Put(remote_album, remote_album.GetEditLink().href, converter=gdata.photos.AlbumEntryFromString) # test after print remote_album.published.text print remote_album.timestamp.text # :'-( Output is: <ns0:published xmlns:ns0="http://www.w3.org/2005/ Atom">2010-12-24T04:01:01.000Z</ns0:published> 2010-12-24T04:01:01.000Z 1293148000 1970-01-15T23:12:28.000Z 1293148000 If you want, you can answer also at StackOverflow: http://stackoverflow.com/questions/4559030/not-able-to-change-a-date-of-my-picasa-web-albums-album-via-python-api Thanks! -- You received this message because you are subscribed to the Google Groups "Google Picasa Web Albums API" 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/google-picasa-data-api?hl=en.
