Questions tagged [gdata-python-client]
36 questions
0
votes
1 answer
How to upload pdf and pptx files to google docs via the gdata python client?
I'm using the gdata python client for the google docs api for a project. I use oauth authentication and all the dance, and have successfully uploaded .doc, .xls and every file type in Their FAQ.
but I cannot seem to upload pdf files, even though is…

lfborjas
- 296
- 3
- 15
0
votes
1 answer
Python: Google Contacts API only retrieving 3 contacts
I am new to Python and to the Google APIs.
I have the following code from https://developers.google.com/google-apps/contacts/v3/?hl=en:
def PrintAllContacts(gd_client):
feed = gd_client.GetContacts()
for i, entry in enumerate(feed.entry):
…

rwg05
- 127
- 6
0
votes
1 answer
Does gdata-python-client allow fulltext queries with multiple terms?
I'm attempting to search for contacts via the Google Contacts API, using multiple search terms. Searching by a single term works fine and returns contact(s):
query = gdata.contacts.client.ContactsQuery()
query.text_query = '1048'
feed =…

CyDharttha
- 59
- 7
0
votes
1 answer
AccessTokenRefreshError: Google Spreadsheet API with oAuth 2.0 Service Account of App Engine App
I'm trying to access a Google Spreadsheet via the GData API using oAuth 2.0 service-account credentials created for a Python 2.7 app hosted on Google App Engine.
The app uses the recent gdata-python-client from Google, v. 2.0.18 (gdata and…

Ani
- 1,377
- 1
- 18
- 29
0
votes
1 answer
setting filters and sort by column in google spreadsheets
I am exploring gdata python library for the purpose of uploading daily inventory reports on to google spreadsheets. I have been able to upload the csv and set the acl.
Since the staff I am sharing it with is not so gdocs savvy, I need auto filters…

sulabh
- 1,097
- 1
- 8
- 22
0
votes
1 answer
Python Code samples for GData Document List API
Since the change to Google's developer documentation, I can't seem to find any code samples. In particular I am looking for usage examples for
Searching Documents
Export documents in various formats
User impersonation for Google Apps users
I am…

Devraj
- 3,025
- 24
- 25