Hello Mike,
I think the following should fit your needs. I'm assuming that you
already have an object named entry.
extension = atom.ExtensionElement(namespace='
http://base.google.com/ns-
metadata/1.0', tag='publishing_priority', text='high')
entry.extension_elements.append(extension)
You can check to make sure that the XML looks reasonable by calling
str(entry).
I had hoped that you would never need to use extension_elements, but
it would seem that the gdata.base module is missing a class for the
publishing_priority XML element which was added to the Google Base
API. Would you mind filing an issue to remind us to add this element?
http://code.google.com/p/gdata-python-client/issues/list
Thank you,
Jeff
On Aug 12, 3:31 am, "
mikehowar...@googlemail.com"