2

Google API for Python を使用して、カレンダーのすべてのイベントを削除しようとしています。イベントを 1 つずつ削除すると問題なく動作しますが、非常に長く最適化されていないため、カレンダーに多くのエントリを挿入するために使用する ExecuteBatch を使用して同じことを試みます (これは挿入前に正常に動作します)。

def DeleteAllEntryOfCalendar(calendar_client, name_calendar):
    #Request_feed for doing the delete
    request_feed = gdata.calendar.CalendarEventFeed()
    #Get the Uri of the cal we've to delete all entries
    uri = GetUri(calendar_client, name_calendar)
    feed = calendar_client.GetAllCalendarsFeed()
    for a_cal in feed.entry:
        if a_cal.title.text == name_calendar:
            calendar = a_cal    
    #For each entry in the cal, do a delete request entry in request_feed
    query = gdata.calendar.client.CalendarEventQuery()
    query.max_results = 1000
    feed = calendar_client.GetCalendarEventFeed(uri=uri, q=query)
    for an_entry in feed.entry:
        an_entry.batch_id = gdata.BatchId(text='delete-request')
        request_feed.AddDelete(entry=an_entry)    
        entry = ''

    # submit the batch request to the server
    response_feed = calendar_client.ExecuteBatch(request_feed, uri+u'/batch')

そして、私はエラーを受け取りました:

Traceback (most recent call last):
  File "c.py", line 253, in <module>
    DeleteAllEntryOfCalendar(client, name_calendar)
  File "c.py", line 187, in DeleteAllEntryOfCalendar
    response_feed = calendar_client.ExecuteBatch(request_feed, uri+u'/batch')
  File "/usr/local/lib/python2.6/dist-packages/gdata/calendar/client.py", line 432, in     execute_batch
    return self.Post(batch_feed, url, desired_class=desired_class)
  File "/usr/local/lib/python2.6/dist-packages/gdata/client.py", line 681, in post
    entry.to_string(get_xml_version(self.api_version)),
AttributeError: 'CalendarEventFeed' object has no attribute 'to_string'

イベントを挿入するために同じことを行うと、これは正常に機能することを繰り返します。私はたくさん検索し、多くの可能性を試しましたが、うまくいきません。アイデアがあれば...

4

1 に答える 1

1

使用する

gdata.calendar.data.CalendarEventFeed

gdata Python ライブラリの一部のオブジェクトには 2 つのバージョンがあり、それらを混在させることはできません。

于 2012-01-19T08:35:07.943 に答える