├── .gitignore ├── .hgignore ├── INSTALL.txt ├── MANIFEST.in ├── Makefile ├── README.txt ├── RELEASE_NOTES.txt ├── pydocs ├── atom.auth.html ├── atom.client.html ├── atom.core.html ├── atom.data.html ├── atom.html ├── atom.http.html ├── atom.http_core.html ├── atom.http_interface.html ├── atom.mock_http.html ├── atom.mock_http_core.html ├── atom.mock_service.html ├── atom.service.html ├── atom.token_store.html ├── atom.url.html ├── gdata.acl.data.html ├── gdata.acl.html ├── gdata.alt.app_engine.html ├── gdata.alt.appengine.html ├── gdata.alt.html ├── gdata.analytics.client.html ├── gdata.analytics.data.html ├── gdata.analytics.html ├── gdata.analytics.service.html ├── gdata.apps.adminsettings.html ├── gdata.apps.adminsettings.service.html ├── gdata.apps.apps_property_entry.html ├── gdata.apps.audit.html ├── gdata.apps.audit.service.html ├── gdata.apps.client.html ├── gdata.apps.data.html ├── gdata.apps.emailsettings.client.html ├── gdata.apps.emailsettings.data.html ├── gdata.apps.emailsettings.html ├── gdata.apps.emailsettings.service.html ├── gdata.apps.groups.client.html ├── gdata.apps.groups.data.html ├── gdata.apps.groups.html ├── gdata.apps.groups.service.html ├── gdata.apps.html ├── gdata.apps.migration.html ├── gdata.apps.migration.service.html ├── gdata.apps.multidomain.client.html ├── gdata.apps.multidomain.data.html ├── gdata.apps.multidomain.html ├── gdata.apps.organization.client.html ├── gdata.apps.organization.data.html ├── gdata.apps.organization.html ├── gdata.apps.organization.service.html ├── gdata.apps.service.html ├── gdata.apps_property.html ├── gdata.auth.html ├── gdata.blogger.client.html ├── gdata.blogger.data.html ├── gdata.blogger.html ├── gdata.blogger.service.html ├── gdata.books.data.html ├── gdata.books.html ├── gdata.books.service.html ├── gdata.calendar.client.html ├── gdata.calendar.data.html ├── gdata.calendar.html ├── gdata.calendar.service.html ├── gdata.calendar_resource.client.html ├── gdata.calendar_resource.data.html ├── gdata.calendar_resource.html ├── gdata.client.html ├── gdata.codesearch.html ├── gdata.codesearch.service.html ├── gdata.contacts.client.html ├── gdata.contacts.data.html ├── gdata.contacts.html ├── gdata.contacts.service.html ├── gdata.contentforshopping.client.html ├── gdata.contentforshopping.data.html ├── gdata.contentforshopping.html ├── gdata.core.html ├── gdata.data.html ├── gdata.docs.client.html ├── gdata.docs.data.html ├── gdata.docs.html ├── gdata.docs.service.html ├── gdata.dublincore.data.html ├── gdata.dublincore.html ├── gdata.exif.html ├── gdata.finance.data.html ├── gdata.finance.html ├── gdata.finance.service.html ├── gdata.gauth.html ├── gdata.geo.data.html ├── gdata.geo.html ├── gdata.health.html ├── gdata.health.service.html ├── gdata.html ├── gdata.maps.client.html ├── gdata.maps.html ├── gdata.marketplace.client.html ├── gdata.marketplace.data.html ├── gdata.marketplace.html ├── gdata.media.data.html ├── gdata.media.html ├── gdata.notebook.data.html ├── gdata.notebook.html ├── gdata.oauth.html ├── gdata.oauth.rsa.html ├── gdata.opensearch.data.html ├── gdata.opensearch.html ├── gdata.photos.html ├── gdata.photos.service.html ├── gdata.projecthosting.client.html ├── gdata.projecthosting.data.html ├── gdata.projecthosting.html ├── gdata.sample_util.html ├── gdata.service.html ├── gdata.sites.client.html ├── gdata.sites.data.html ├── gdata.sites.html ├── gdata.spreadsheet.html ├── gdata.spreadsheet.service.html ├── gdata.spreadsheet.text_db.html ├── gdata.spreadsheets.client.html ├── gdata.spreadsheets.data.html ├── gdata.spreadsheets.html ├── gdata.test_config.html ├── gdata.test_config_template.html ├── gdata.test_data.html ├── gdata.urlfetch.html ├── gdata.webmastertools.data.html ├── gdata.webmastertools.html ├── gdata.webmastertools.service.html ├── gdata.youtube.client.html ├── gdata.youtube.data.html ├── gdata.youtube.html ├── gdata.youtube.service.html └── generate_docs ├── samples ├── analytics │ ├── account_feed_demo.py │ ├── data_feed_demo.py │ └── mgmt_feed_demo.py ├── apps │ ├── adminsettings_example.py │ ├── client_secrets.json │ ├── create_update_group.py │ ├── email_audit_email_monitoring.py │ ├── email_settings_labels_filters.py │ ├── emailsettings_example.py │ ├── emailsettings_pop_settings.py │ ├── groups_provisioning_quick_start_example.py │ ├── list_group_members.py │ ├── marketplace_sample │ │ ├── app.yaml │ │ ├── appengine_utilities │ │ │ ├── __init__.py │ │ │ ├── cache.py │ │ │ ├── django-middleware │ │ │ │ ├── __init__.py │ │ │ │ └── middleware.py │ │ │ ├── event.py │ │ │ ├── flash.py │ │ │ ├── interface │ │ │ │ ├── __init__.py │ │ │ │ ├── css │ │ │ │ │ ├── cssbase │ │ │ │ │ │ ├── base-context-min.css │ │ │ │ │ │ ├── base-context.css │ │ │ │ │ │ ├── base-min.css │ │ │ │ │ │ └── base.css │ │ │ │ │ ├── cssfonts │ │ │ │ │ │ ├── fonts-context-min.css │ │ │ │ │ │ ├── fonts-context.css │ │ │ │ │ │ ├── fonts-min.css │ │ │ │ │ │ └── fonts.css │ │ │ │ │ ├── cssgrids │ │ │ │ │ │ ├── grids-context-min.css │ │ │ │ │ │ ├── grids-context.css │ │ │ │ │ │ ├── grids-min.css │ │ │ │ │ │ └── grids.css │ │ │ │ │ ├── cssreset │ │ │ │ │ │ ├── reset-context-min.css │ │ │ │ │ │ ├── reset-context.css │ │ │ │ │ │ ├── reset-min.css │ │ │ │ │ │ └── reset.css │ │ │ │ │ └── main.css │ │ │ │ ├── main.py │ │ │ │ └── templates │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── base.html │ │ │ │ │ └── scheduler_form.html │ │ │ ├── rotmodel.py │ │ │ ├── sessions.py │ │ │ └── settings_default.py │ │ ├── atom │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── client.py │ │ │ ├── core.py │ │ │ ├── data.py │ │ │ ├── http.py │ │ │ ├── http_core.py │ │ │ ├── http_interface.py │ │ │ ├── mock_http.py │ │ │ ├── mock_http_core.py │ │ │ ├── mock_service.py │ │ │ ├── service.py │ │ │ ├── token_store.py │ │ │ └── url.py │ │ ├── css │ │ │ └── style.css │ │ ├── domain_mgmt_app.py │ │ ├── gdata │ │ │ ├── __init__.py │ │ │ ├── apps │ │ │ │ ├── __init__.py │ │ │ │ ├── adminsettings │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── service.py │ │ │ │ ├── apps_property_entry.py │ │ │ │ ├── audit │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── service.py │ │ │ │ ├── client.py │ │ │ │ ├── data.py │ │ │ │ ├── emailsettings │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── data.py │ │ │ │ │ └── service.py │ │ │ │ ├── groups │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── data.py │ │ │ │ │ └── service.py │ │ │ │ ├── migration │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── service.py │ │ │ │ ├── multidomain │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── client.py │ │ │ │ │ └── data.py │ │ │ │ ├── organization │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── data.py │ │ │ │ │ └── service.py │ │ │ │ └── service.py │ │ │ ├── apps_property.py │ │ │ ├── auth.py │ │ │ ├── calendar │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── data.py │ │ │ │ └── service.py │ │ │ ├── client.py │ │ │ ├── core.py │ │ │ ├── data.py │ │ │ ├── gauth.py │ │ │ ├── oauth │ │ │ │ ├── CHANGES.txt │ │ │ │ ├── __init__.py │ │ │ │ └── rsa.py │ │ │ ├── sample_util.py │ │ │ ├── service.py │ │ │ ├── test_config.py │ │ │ ├── test_data.py │ │ │ └── urlfetch.py │ │ ├── images │ │ │ └── google.png │ │ ├── js │ │ │ ├── json2.js │ │ │ └── main.js │ │ └── templates │ │ │ └── index.html │ ├── migration_example.py │ ├── multidomain_quick_start_example.py │ ├── org_unit_sites.py │ ├── orgunit_quick_start_example.py │ ├── provisioning_oauth2_example.py │ ├── provisioning_oauth_example │ │ ├── app.yaml │ │ ├── css │ │ │ └── index.css │ │ ├── footer.html │ │ ├── header.html │ │ ├── images │ │ │ └── google-small.png │ │ ├── index.html │ │ ├── js │ │ │ └── index.js │ │ ├── login.html │ │ └── main.py │ ├── search_organize_users.py │ ├── suspended_users_cleanup.py │ ├── user_profile_contacts_2lo.py │ └── userprovisioning_quick_start_example.py ├── authsub │ └── secure_authsub.py ├── blogger │ ├── BloggerExample.py │ ├── BloggerExampleV1.py │ ├── app │ │ ├── app.yaml │ │ ├── auth_required.html │ │ ├── blogapp.py │ │ ├── list_blogs.html │ │ ├── post_editor.html │ │ └── welcome.html │ └── oauth-appengine │ │ ├── app.yaml │ │ ├── css │ │ └── index.css │ │ ├── index.html │ │ ├── index.yaml │ │ ├── main.py │ │ └── oauth.py ├── calendar │ └── calendarExample.py ├── calendar_resource │ └── calendar_resource_example.py ├── codesearch │ └── CodesearchExample.py ├── contacts │ ├── contacts_example.py │ ├── profiles_example.py │ └── unshare_profiles.py ├── contentforshopping │ ├── add_batch_products.py │ ├── add_product.py │ ├── ca_insert.py │ ├── ca_list.py │ └── list_products.py ├── docs │ ├── docs_example.py │ ├── docs_v3_example.py │ └── samplerunner.py ├── finance │ └── test_finance.py ├── mashups │ └── birthdaySample.py ├── oauth │ ├── 2_legged_oauth.py │ ├── TwoLeggedOAuthExample.py │ ├── oauth_example.py │ └── oauth_on_appengine │ │ ├── README.txt │ │ ├── app.yaml │ │ ├── appengine_utilities │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── cron.py │ │ ├── event.py │ │ ├── flash.py │ │ ├── paginator.py │ │ ├── rotmodel.py │ │ └── sessions.py │ │ ├── css │ │ └── index.css │ │ ├── images │ │ ├── icon_document.gif │ │ ├── icon_folder.gif │ │ ├── icon_pdf.gif │ │ ├── icon_presentation.gif │ │ ├── icon_spreadsheet.gif │ │ ├── icon_starred.png │ │ └── icon_trashed.png │ │ ├── index.html │ │ ├── index.yaml │ │ ├── js │ │ └── jquery.corners.min.js │ │ ├── main_hmac.py │ │ └── main_rsa.py ├── sites │ └── sites_example.py ├── spreadsheets │ └── spreadsheetExample.py └── webmastertools │ ├── AddDeleteExampleDotCom.py │ ├── SitemapsFeedSummary.py │ └── SitesFeedSummary.py ├── setup.py ├── src ├── atom │ ├── __init__.py │ ├── auth.py │ ├── client.py │ ├── core.py │ ├── data.py │ ├── http.py │ ├── http_core.py │ ├── http_interface.py │ ├── mock_http.py │ ├── mock_http_core.py │ ├── mock_service.py │ ├── service.py │ ├── token_store.py │ └── url.py └── gdata │ ├── __init__.py │ ├── acl │ ├── __init__.py │ └── data.py │ ├── alt │ ├── __init__.py │ ├── app_engine.py │ └── appengine.py │ ├── analytics │ ├── __init__.py │ ├── client.py │ ├── data.py │ └── service.py │ ├── apps │ ├── __init__.py │ ├── adminsettings │ │ ├── __init__.py │ │ └── service.py │ ├── apps_property_entry.py │ ├── audit │ │ ├── __init__.py │ │ └── service.py │ ├── client.py │ ├── data.py │ ├── emailsettings │ │ ├── __init__.py │ │ ├── client.py │ │ ├── data.py │ │ └── service.py │ ├── groups │ │ ├── __init__.py │ │ ├── client.py │ │ ├── data.py │ │ └── service.py │ ├── migration │ │ ├── __init__.py │ │ └── service.py │ ├── multidomain │ │ ├── __init__.py │ │ ├── client.py │ │ └── data.py │ ├── organization │ │ ├── __init__.py │ │ ├── client.py │ │ ├── data.py │ │ └── service.py │ └── service.py │ ├── apps_property.py │ ├── auth.py │ ├── blogger │ ├── __init__.py │ ├── client.py │ ├── data.py │ └── service.py │ ├── calendar │ ├── __init__.py │ ├── client.py │ ├── data.py │ └── service.py │ ├── calendar_resource │ ├── __init__.py │ ├── client.py │ └── data.py │ ├── client.py │ ├── codesearch │ ├── __init__.py │ └── service.py │ ├── contacts │ ├── __init__.py │ ├── client.py │ ├── data.py │ └── service.py │ ├── contentforshopping │ ├── __init__.py │ ├── client.py │ └── data.py │ ├── core.py │ ├── data.py │ ├── docs │ ├── __init__.py │ ├── client.py │ ├── data.py │ └── service.py │ ├── dublincore │ ├── __init__.py │ └── data.py │ ├── exif │ └── __init__.py │ ├── gauth.py │ ├── geo │ ├── __init__.py │ └── data.py │ ├── marketplace │ ├── __init__.py │ ├── client.py │ └── data.py │ ├── media │ ├── __init__.py │ └── data.py │ ├── oauth │ ├── CHANGES.txt │ ├── __init__.py │ └── rsa.py │ ├── opensearch │ ├── __init__.py │ └── data.py │ ├── photos │ ├── __init__.py │ └── service.py │ ├── projecthosting │ ├── __init__.py │ ├── client.py │ └── data.py │ ├── sample_util.py │ ├── service.py │ ├── sites │ ├── __init__.py │ ├── client.py │ └── data.py │ ├── spreadsheet │ ├── __init__.py │ ├── service.py │ └── text_db.py │ ├── spreadsheets │ ├── __init__.py │ ├── client.py │ └── data.py │ ├── test_config.py │ ├── test_data.py │ ├── urlfetch.py │ ├── webmastertools │ ├── __init__.py │ ├── data.py │ └── service.py │ └── youtube │ ├── __init__.py │ ├── client.py │ ├── data.py │ └── service.py ├── tests ├── __init__.py ├── all_tests.py ├── all_tests_cached.py ├── all_tests_clear_cache.py ├── all_tests_coverage.py ├── all_tests_local.py ├── atom_test.py ├── atom_tests │ ├── __init__.py │ ├── auth_test.py │ ├── client_test.py │ ├── core_test.py │ ├── data_test.py │ ├── http_core_test.py │ ├── http_interface_test.py │ ├── mock_client_test.py │ ├── mock_http_core_test.py │ ├── mock_http_test.py │ ├── mock_server_test.py │ ├── service_test.py │ ├── token_store_test.py │ └── url_test.py ├── coverage.py ├── files │ └── testimage.jpg ├── gdata_test.py ├── gdata_tests │ ├── __init__.py │ ├── analytics │ │ ├── __init__.py │ │ ├── data_test.py │ │ ├── live_client_test.py │ │ └── query_test.py │ ├── apps │ │ ├── AppsServiceTestForGetGeneratorForAllEmailLists.pickle │ │ ├── AppsServiceTestForGetGeneratorForAllNicknames.pickle │ │ ├── AppsServiceTestForGetGeneratorForAllRecipients.pickle │ │ ├── AppsServiceTestForGetGeneratorForAllUsers.pickle │ │ ├── TestDataForGeneratorTest.p │ │ ├── __init__.py │ │ ├── data_test.py │ │ ├── emailsettings │ │ │ ├── __init__.py │ │ │ ├── data_test.py │ │ │ ├── live_client_test.py │ │ │ └── service_test.py │ │ ├── groups │ │ │ ├── __init__.py │ │ │ ├── data_test.py │ │ │ ├── live_client_test.py │ │ │ └── service_test.py │ │ ├── live_client_test.py │ │ ├── migration │ │ │ ├── __init__.py │ │ │ └── service_test.py │ │ ├── multidomain │ │ │ ├── __init__.py │ │ │ ├── data_test.py │ │ │ └── live_client_test.py │ │ ├── organization │ │ │ ├── __init__.py │ │ │ ├── data_test.py │ │ │ ├── live_client_test.py │ │ │ └── service_test.py │ │ ├── service_test.py │ │ └── service_test_using_mock.py │ ├── apps_test.py │ ├── auth_test.py │ ├── blogger │ │ ├── __init__.py │ │ ├── data_test.py │ │ ├── live_client_test.py │ │ └── service_test.py │ ├── blogger_test.py │ ├── calendar │ │ ├── __init__.py │ │ ├── calendar_acl_test.py │ │ └── service_test.py │ ├── calendar_resource │ │ ├── __init__.py │ │ ├── data_test.py │ │ └── live_client_test.py │ ├── calendar_test.py │ ├── client_smoke_test.py │ ├── client_test.py │ ├── codesearch_test.py │ ├── contacts │ │ ├── __init__.py │ │ ├── live_client_test.py │ │ ├── profiles │ │ │ ├── __init__.py │ │ │ ├── live_client_test.py │ │ │ └── service_test.py │ │ └── service_test.py │ ├── contacts_test.py │ ├── contentforshopping_test.py │ ├── core_test.py │ ├── data_smoke_test.py │ ├── data_test.py │ ├── docs │ │ ├── __init__.py │ │ ├── data │ │ │ ├── test.0.bin │ │ │ ├── test.0.csv │ │ │ ├── test.0.doc │ │ │ ├── test.0.pdf │ │ │ ├── test.0.ppt │ │ │ ├── test.0.wmf │ │ │ ├── test.1.bin │ │ │ ├── test.1.csv │ │ │ ├── test.1.doc │ │ │ ├── test.1.pdf │ │ │ ├── test.1.ppt │ │ │ └── test.1.wmf │ │ ├── data_test.py │ │ ├── live_client_test.py │ │ └── service_test.py │ ├── docs_test.py │ ├── gauth_test.py │ ├── live_client_test.py │ ├── marketplace │ │ ├── __init__.py │ │ └── live_client_test.py │ ├── oauth │ │ ├── __init__.py │ │ └── data_test.py │ ├── photos │ │ ├── __init__.py │ │ └── service_test.py │ ├── photos_test.py │ ├── projecthosting │ │ ├── __init__.py │ │ ├── data_test.py │ │ └── live_client_test.py │ ├── resumable_upload_test.py │ ├── sample_util_test.py │ ├── service_test.py │ ├── sites │ │ ├── __init__.py │ │ ├── data_test.py │ │ └── live_client_test.py │ ├── spreadsheet │ │ ├── __init__.py │ │ ├── service_test.py │ │ └── text_db_test.py │ ├── spreadsheet_test.py │ ├── spreadsheets │ │ ├── __init__.py │ │ ├── data_test.py │ │ └── live_client_test.py │ ├── webmastertools_test.py │ ├── youtube │ │ ├── __init__.py │ │ ├── live_client_test.py │ │ └── service_test.py │ └── youtube_test.py ├── module_test_runner.py ├── run_all_tests.py ├── run_data_tests.py ├── run_service_tests.py └── testimage.jpg └── upload-diffs.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/.hgignore -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/Makefile -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/README.txt -------------------------------------------------------------------------------- /RELEASE_NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/RELEASE_NOTES.txt -------------------------------------------------------------------------------- /pydocs/atom.auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/atom.auth.html -------------------------------------------------------------------------------- /pydocs/atom.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/atom.client.html -------------------------------------------------------------------------------- /pydocs/atom.core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/atom.core.html -------------------------------------------------------------------------------- /pydocs/atom.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/atom.data.html -------------------------------------------------------------------------------- /pydocs/atom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/atom.html -------------------------------------------------------------------------------- /pydocs/atom.http.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/atom.http.html -------------------------------------------------------------------------------- /pydocs/atom.http_core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/atom.http_core.html -------------------------------------------------------------------------------- /pydocs/atom.http_interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/atom.http_interface.html -------------------------------------------------------------------------------- /pydocs/atom.mock_http.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/atom.mock_http.html -------------------------------------------------------------------------------- /pydocs/atom.mock_http_core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/atom.mock_http_core.html -------------------------------------------------------------------------------- /pydocs/atom.mock_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/atom.mock_service.html -------------------------------------------------------------------------------- /pydocs/atom.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/atom.service.html -------------------------------------------------------------------------------- /pydocs/atom.token_store.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/atom.token_store.html -------------------------------------------------------------------------------- /pydocs/atom.url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/atom.url.html -------------------------------------------------------------------------------- /pydocs/gdata.acl.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.acl.data.html -------------------------------------------------------------------------------- /pydocs/gdata.acl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.acl.html -------------------------------------------------------------------------------- /pydocs/gdata.alt.app_engine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.alt.app_engine.html -------------------------------------------------------------------------------- /pydocs/gdata.alt.appengine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.alt.appengine.html -------------------------------------------------------------------------------- /pydocs/gdata.alt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.alt.html -------------------------------------------------------------------------------- /pydocs/gdata.analytics.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.analytics.client.html -------------------------------------------------------------------------------- /pydocs/gdata.analytics.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.analytics.data.html -------------------------------------------------------------------------------- /pydocs/gdata.analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.analytics.html -------------------------------------------------------------------------------- /pydocs/gdata.analytics.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.analytics.service.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.adminsettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.adminsettings.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.adminsettings.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.adminsettings.service.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.apps_property_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.apps_property_entry.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.audit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.audit.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.audit.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.audit.service.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.client.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.data.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.emailsettings.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.emailsettings.client.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.emailsettings.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.emailsettings.data.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.emailsettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.emailsettings.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.emailsettings.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.emailsettings.service.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.groups.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.groups.client.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.groups.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.groups.data.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.groups.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.groups.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.groups.service.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.migration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.migration.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.migration.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.migration.service.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.multidomain.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.multidomain.client.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.multidomain.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.multidomain.data.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.multidomain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.multidomain.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.organization.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.organization.client.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.organization.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.organization.data.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.organization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.organization.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.organization.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.organization.service.html -------------------------------------------------------------------------------- /pydocs/gdata.apps.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps.service.html -------------------------------------------------------------------------------- /pydocs/gdata.apps_property.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.apps_property.html -------------------------------------------------------------------------------- /pydocs/gdata.auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.auth.html -------------------------------------------------------------------------------- /pydocs/gdata.blogger.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.blogger.client.html -------------------------------------------------------------------------------- /pydocs/gdata.blogger.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.blogger.data.html -------------------------------------------------------------------------------- /pydocs/gdata.blogger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.blogger.html -------------------------------------------------------------------------------- /pydocs/gdata.blogger.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.blogger.service.html -------------------------------------------------------------------------------- /pydocs/gdata.books.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.books.data.html -------------------------------------------------------------------------------- /pydocs/gdata.books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.books.html -------------------------------------------------------------------------------- /pydocs/gdata.books.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.books.service.html -------------------------------------------------------------------------------- /pydocs/gdata.calendar.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.calendar.client.html -------------------------------------------------------------------------------- /pydocs/gdata.calendar.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.calendar.data.html -------------------------------------------------------------------------------- /pydocs/gdata.calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.calendar.html -------------------------------------------------------------------------------- /pydocs/gdata.calendar.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.calendar.service.html -------------------------------------------------------------------------------- /pydocs/gdata.calendar_resource.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.calendar_resource.client.html -------------------------------------------------------------------------------- /pydocs/gdata.calendar_resource.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.calendar_resource.data.html -------------------------------------------------------------------------------- /pydocs/gdata.calendar_resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.calendar_resource.html -------------------------------------------------------------------------------- /pydocs/gdata.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.client.html -------------------------------------------------------------------------------- /pydocs/gdata.codesearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.codesearch.html -------------------------------------------------------------------------------- /pydocs/gdata.codesearch.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.codesearch.service.html -------------------------------------------------------------------------------- /pydocs/gdata.contacts.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.contacts.client.html -------------------------------------------------------------------------------- /pydocs/gdata.contacts.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.contacts.data.html -------------------------------------------------------------------------------- /pydocs/gdata.contacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.contacts.html -------------------------------------------------------------------------------- /pydocs/gdata.contacts.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.contacts.service.html -------------------------------------------------------------------------------- /pydocs/gdata.contentforshopping.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.contentforshopping.client.html -------------------------------------------------------------------------------- /pydocs/gdata.contentforshopping.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.contentforshopping.data.html -------------------------------------------------------------------------------- /pydocs/gdata.contentforshopping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.contentforshopping.html -------------------------------------------------------------------------------- /pydocs/gdata.core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.core.html -------------------------------------------------------------------------------- /pydocs/gdata.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.data.html -------------------------------------------------------------------------------- /pydocs/gdata.docs.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.docs.client.html -------------------------------------------------------------------------------- /pydocs/gdata.docs.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.docs.data.html -------------------------------------------------------------------------------- /pydocs/gdata.docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.docs.html -------------------------------------------------------------------------------- /pydocs/gdata.docs.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.docs.service.html -------------------------------------------------------------------------------- /pydocs/gdata.dublincore.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.dublincore.data.html -------------------------------------------------------------------------------- /pydocs/gdata.dublincore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.dublincore.html -------------------------------------------------------------------------------- /pydocs/gdata.exif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.exif.html -------------------------------------------------------------------------------- /pydocs/gdata.finance.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.finance.data.html -------------------------------------------------------------------------------- /pydocs/gdata.finance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.finance.html -------------------------------------------------------------------------------- /pydocs/gdata.finance.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.finance.service.html -------------------------------------------------------------------------------- /pydocs/gdata.gauth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.gauth.html -------------------------------------------------------------------------------- /pydocs/gdata.geo.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.geo.data.html -------------------------------------------------------------------------------- /pydocs/gdata.geo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.geo.html -------------------------------------------------------------------------------- /pydocs/gdata.health.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.health.html -------------------------------------------------------------------------------- /pydocs/gdata.health.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.health.service.html -------------------------------------------------------------------------------- /pydocs/gdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.html -------------------------------------------------------------------------------- /pydocs/gdata.maps.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.maps.client.html -------------------------------------------------------------------------------- /pydocs/gdata.maps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.maps.html -------------------------------------------------------------------------------- /pydocs/gdata.marketplace.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.marketplace.client.html -------------------------------------------------------------------------------- /pydocs/gdata.marketplace.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.marketplace.data.html -------------------------------------------------------------------------------- /pydocs/gdata.marketplace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.marketplace.html -------------------------------------------------------------------------------- /pydocs/gdata.media.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.media.data.html -------------------------------------------------------------------------------- /pydocs/gdata.media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.media.html -------------------------------------------------------------------------------- /pydocs/gdata.notebook.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.notebook.data.html -------------------------------------------------------------------------------- /pydocs/gdata.notebook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.notebook.html -------------------------------------------------------------------------------- /pydocs/gdata.oauth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.oauth.html -------------------------------------------------------------------------------- /pydocs/gdata.oauth.rsa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.oauth.rsa.html -------------------------------------------------------------------------------- /pydocs/gdata.opensearch.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.opensearch.data.html -------------------------------------------------------------------------------- /pydocs/gdata.opensearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.opensearch.html -------------------------------------------------------------------------------- /pydocs/gdata.photos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.photos.html -------------------------------------------------------------------------------- /pydocs/gdata.photos.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.photos.service.html -------------------------------------------------------------------------------- /pydocs/gdata.projecthosting.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.projecthosting.client.html -------------------------------------------------------------------------------- /pydocs/gdata.projecthosting.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.projecthosting.data.html -------------------------------------------------------------------------------- /pydocs/gdata.projecthosting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.projecthosting.html -------------------------------------------------------------------------------- /pydocs/gdata.sample_util.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.sample_util.html -------------------------------------------------------------------------------- /pydocs/gdata.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.service.html -------------------------------------------------------------------------------- /pydocs/gdata.sites.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.sites.client.html -------------------------------------------------------------------------------- /pydocs/gdata.sites.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.sites.data.html -------------------------------------------------------------------------------- /pydocs/gdata.sites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.sites.html -------------------------------------------------------------------------------- /pydocs/gdata.spreadsheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.spreadsheet.html -------------------------------------------------------------------------------- /pydocs/gdata.spreadsheet.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.spreadsheet.service.html -------------------------------------------------------------------------------- /pydocs/gdata.spreadsheet.text_db.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.spreadsheet.text_db.html -------------------------------------------------------------------------------- /pydocs/gdata.spreadsheets.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.spreadsheets.client.html -------------------------------------------------------------------------------- /pydocs/gdata.spreadsheets.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.spreadsheets.data.html -------------------------------------------------------------------------------- /pydocs/gdata.spreadsheets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.spreadsheets.html -------------------------------------------------------------------------------- /pydocs/gdata.test_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.test_config.html -------------------------------------------------------------------------------- /pydocs/gdata.test_config_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.test_config_template.html -------------------------------------------------------------------------------- /pydocs/gdata.test_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.test_data.html -------------------------------------------------------------------------------- /pydocs/gdata.urlfetch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.urlfetch.html -------------------------------------------------------------------------------- /pydocs/gdata.webmastertools.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.webmastertools.data.html -------------------------------------------------------------------------------- /pydocs/gdata.webmastertools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.webmastertools.html -------------------------------------------------------------------------------- /pydocs/gdata.webmastertools.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.webmastertools.service.html -------------------------------------------------------------------------------- /pydocs/gdata.youtube.client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.youtube.client.html -------------------------------------------------------------------------------- /pydocs/gdata.youtube.data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.youtube.data.html -------------------------------------------------------------------------------- /pydocs/gdata.youtube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.youtube.html -------------------------------------------------------------------------------- /pydocs/gdata.youtube.service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/gdata.youtube.service.html -------------------------------------------------------------------------------- /pydocs/generate_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/pydocs/generate_docs -------------------------------------------------------------------------------- /samples/analytics/account_feed_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/analytics/account_feed_demo.py -------------------------------------------------------------------------------- /samples/analytics/data_feed_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/analytics/data_feed_demo.py -------------------------------------------------------------------------------- /samples/analytics/mgmt_feed_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/analytics/mgmt_feed_demo.py -------------------------------------------------------------------------------- /samples/apps/adminsettings_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/adminsettings_example.py -------------------------------------------------------------------------------- /samples/apps/client_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/client_secrets.json -------------------------------------------------------------------------------- /samples/apps/create_update_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/create_update_group.py -------------------------------------------------------------------------------- /samples/apps/email_audit_email_monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/email_audit_email_monitoring.py -------------------------------------------------------------------------------- /samples/apps/email_settings_labels_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/email_settings_labels_filters.py -------------------------------------------------------------------------------- /samples/apps/emailsettings_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/emailsettings_example.py -------------------------------------------------------------------------------- /samples/apps/emailsettings_pop_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/emailsettings_pop_settings.py -------------------------------------------------------------------------------- /samples/apps/groups_provisioning_quick_start_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/groups_provisioning_quick_start_example.py -------------------------------------------------------------------------------- /samples/apps/list_group_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/list_group_members.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/app.yaml -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/cache.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/django-middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/django-middleware/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/django-middleware/middleware.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/event.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/flash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/flash.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/cssbase/base-context-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/cssbase/base-context-min.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/cssbase/base-context.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/cssbase/base-context.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/cssbase/base-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/cssbase/base-min.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/cssbase/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/cssbase/base.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/cssfonts/fonts-context-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/cssfonts/fonts-context-min.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/cssfonts/fonts-context.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/cssfonts/fonts-context.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/cssfonts/fonts-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/cssfonts/fonts-min.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/cssfonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/cssfonts/fonts.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/cssgrids/grids-context-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/cssgrids/grids-context-min.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/cssgrids/grids-context.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/cssgrids/grids-context.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/cssgrids/grids-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/cssgrids/grids-min.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/cssgrids/grids.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/cssgrids/grids.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/cssreset/reset-context-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/cssreset/reset-context-min.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/cssreset/reset-context.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/cssreset/reset-context.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/cssreset/reset-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/cssreset/reset-min.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/cssreset/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/cssreset/reset.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/css/main.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/main.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/templates/404.html: -------------------------------------------------------------------------------- 1 | 404 2 | -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/templates/base.html -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/interface/templates/scheduler_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/interface/templates/scheduler_form.html -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/rotmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/rotmodel.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/sessions.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/appengine_utilities/settings_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/appengine_utilities/settings_default.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/atom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/atom/__init__.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/atom/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/atom/auth.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/atom/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/atom/client.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/atom/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/atom/core.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/atom/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/atom/data.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/atom/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/atom/http.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/atom/http_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/atom/http_core.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/atom/http_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/atom/http_interface.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/atom/mock_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/atom/mock_http.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/atom/mock_http_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/atom/mock_http_core.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/atom/mock_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/atom/mock_service.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/atom/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/atom/service.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/atom/token_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/atom/token_store.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/atom/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/atom/url.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/css/style.css -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/domain_mgmt_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/domain_mgmt_app.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/__init__.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/__init__.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/adminsettings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/adminsettings/__init__.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/adminsettings/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/adminsettings/service.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/apps_property_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/apps_property_entry.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/audit/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/audit/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/audit/service.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/client.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/data.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/emailsettings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/emailsettings/__init__.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/emailsettings/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/emailsettings/client.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/emailsettings/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/emailsettings/data.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/emailsettings/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/emailsettings/service.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/groups/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/groups/client.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/groups/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/groups/data.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/groups/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/groups/service.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/migration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/migration/__init__.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/migration/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/migration/service.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/multidomain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/multidomain/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/multidomain/client.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/multidomain/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/multidomain/data.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/organization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/organization/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/organization/client.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/organization/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/organization/data.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/organization/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/organization/service.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps/service.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/apps_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/apps_property.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/auth.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/calendar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/calendar/__init__.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/calendar/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/calendar/client.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/calendar/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/calendar/data.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/calendar/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/calendar/service.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/client.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/core.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/data.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/gauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/gauth.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/oauth/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/oauth/CHANGES.txt -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/oauth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/oauth/__init__.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/oauth/rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/oauth/rsa.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/sample_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/sample_util.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/service.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/test_config.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/test_data.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/gdata/urlfetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/gdata/urlfetch.py -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/images/google.png -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/js/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/js/json2.js -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/js/main.js -------------------------------------------------------------------------------- /samples/apps/marketplace_sample/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/marketplace_sample/templates/index.html -------------------------------------------------------------------------------- /samples/apps/migration_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/migration_example.py -------------------------------------------------------------------------------- /samples/apps/multidomain_quick_start_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/multidomain_quick_start_example.py -------------------------------------------------------------------------------- /samples/apps/org_unit_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/org_unit_sites.py -------------------------------------------------------------------------------- /samples/apps/orgunit_quick_start_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/orgunit_quick_start_example.py -------------------------------------------------------------------------------- /samples/apps/provisioning_oauth2_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/provisioning_oauth2_example.py -------------------------------------------------------------------------------- /samples/apps/provisioning_oauth_example/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/provisioning_oauth_example/app.yaml -------------------------------------------------------------------------------- /samples/apps/provisioning_oauth_example/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/provisioning_oauth_example/css/index.css -------------------------------------------------------------------------------- /samples/apps/provisioning_oauth_example/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/provisioning_oauth_example/footer.html -------------------------------------------------------------------------------- /samples/apps/provisioning_oauth_example/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/provisioning_oauth_example/header.html -------------------------------------------------------------------------------- /samples/apps/provisioning_oauth_example/images/google-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/provisioning_oauth_example/images/google-small.png -------------------------------------------------------------------------------- /samples/apps/provisioning_oauth_example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/provisioning_oauth_example/index.html -------------------------------------------------------------------------------- /samples/apps/provisioning_oauth_example/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/provisioning_oauth_example/js/index.js -------------------------------------------------------------------------------- /samples/apps/provisioning_oauth_example/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/provisioning_oauth_example/login.html -------------------------------------------------------------------------------- /samples/apps/provisioning_oauth_example/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/provisioning_oauth_example/main.py -------------------------------------------------------------------------------- /samples/apps/search_organize_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/search_organize_users.py -------------------------------------------------------------------------------- /samples/apps/suspended_users_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/suspended_users_cleanup.py -------------------------------------------------------------------------------- /samples/apps/user_profile_contacts_2lo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/user_profile_contacts_2lo.py -------------------------------------------------------------------------------- /samples/apps/userprovisioning_quick_start_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/apps/userprovisioning_quick_start_example.py -------------------------------------------------------------------------------- /samples/authsub/secure_authsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/authsub/secure_authsub.py -------------------------------------------------------------------------------- /samples/blogger/BloggerExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/blogger/BloggerExample.py -------------------------------------------------------------------------------- /samples/blogger/BloggerExampleV1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/blogger/BloggerExampleV1.py -------------------------------------------------------------------------------- /samples/blogger/app/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/blogger/app/app.yaml -------------------------------------------------------------------------------- /samples/blogger/app/auth_required.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/blogger/app/auth_required.html -------------------------------------------------------------------------------- /samples/blogger/app/blogapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/blogger/app/blogapp.py -------------------------------------------------------------------------------- /samples/blogger/app/list_blogs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/blogger/app/list_blogs.html -------------------------------------------------------------------------------- /samples/blogger/app/post_editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/blogger/app/post_editor.html -------------------------------------------------------------------------------- /samples/blogger/app/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/blogger/app/welcome.html -------------------------------------------------------------------------------- /samples/blogger/oauth-appengine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/blogger/oauth-appengine/app.yaml -------------------------------------------------------------------------------- /samples/blogger/oauth-appengine/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/blogger/oauth-appengine/css/index.css -------------------------------------------------------------------------------- /samples/blogger/oauth-appengine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/blogger/oauth-appengine/index.html -------------------------------------------------------------------------------- /samples/blogger/oauth-appengine/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/blogger/oauth-appengine/index.yaml -------------------------------------------------------------------------------- /samples/blogger/oauth-appengine/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/blogger/oauth-appengine/main.py -------------------------------------------------------------------------------- /samples/blogger/oauth-appengine/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/blogger/oauth-appengine/oauth.py -------------------------------------------------------------------------------- /samples/calendar/calendarExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/calendar/calendarExample.py -------------------------------------------------------------------------------- /samples/calendar_resource/calendar_resource_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/calendar_resource/calendar_resource_example.py -------------------------------------------------------------------------------- /samples/codesearch/CodesearchExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/codesearch/CodesearchExample.py -------------------------------------------------------------------------------- /samples/contacts/contacts_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/contacts/contacts_example.py -------------------------------------------------------------------------------- /samples/contacts/profiles_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/contacts/profiles_example.py -------------------------------------------------------------------------------- /samples/contacts/unshare_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/contacts/unshare_profiles.py -------------------------------------------------------------------------------- /samples/contentforshopping/add_batch_products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/contentforshopping/add_batch_products.py -------------------------------------------------------------------------------- /samples/contentforshopping/add_product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/contentforshopping/add_product.py -------------------------------------------------------------------------------- /samples/contentforshopping/ca_insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/contentforshopping/ca_insert.py -------------------------------------------------------------------------------- /samples/contentforshopping/ca_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/contentforshopping/ca_list.py -------------------------------------------------------------------------------- /samples/contentforshopping/list_products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/contentforshopping/list_products.py -------------------------------------------------------------------------------- /samples/docs/docs_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/docs/docs_example.py -------------------------------------------------------------------------------- /samples/docs/docs_v3_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/docs/docs_v3_example.py -------------------------------------------------------------------------------- /samples/docs/samplerunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/docs/samplerunner.py -------------------------------------------------------------------------------- /samples/finance/test_finance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/finance/test_finance.py -------------------------------------------------------------------------------- /samples/mashups/birthdaySample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/mashups/birthdaySample.py -------------------------------------------------------------------------------- /samples/oauth/2_legged_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/2_legged_oauth.py -------------------------------------------------------------------------------- /samples/oauth/TwoLeggedOAuthExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/TwoLeggedOAuthExample.py -------------------------------------------------------------------------------- /samples/oauth/oauth_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_example.py -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/README.txt -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/app.yaml -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/appengine_utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/appengine_utilities/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/appengine_utilities/cache.py -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/appengine_utilities/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/appengine_utilities/cron.py -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/appengine_utilities/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/appengine_utilities/event.py -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/appengine_utilities/flash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/appengine_utilities/flash.py -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/appengine_utilities/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/appengine_utilities/paginator.py -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/appengine_utilities/rotmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/appengine_utilities/rotmodel.py -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/appengine_utilities/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/appengine_utilities/sessions.py -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/css/index.css -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/images/icon_document.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/images/icon_document.gif -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/images/icon_folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/images/icon_folder.gif -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/images/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/images/icon_pdf.gif -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/images/icon_presentation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/images/icon_presentation.gif -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/images/icon_spreadsheet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/images/icon_spreadsheet.gif -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/images/icon_starred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/images/icon_starred.png -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/images/icon_trashed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/images/icon_trashed.png -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/index.html -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/index.yaml -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/js/jquery.corners.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/js/jquery.corners.min.js -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/main_hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/main_hmac.py -------------------------------------------------------------------------------- /samples/oauth/oauth_on_appengine/main_rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/oauth/oauth_on_appengine/main_rsa.py -------------------------------------------------------------------------------- /samples/sites/sites_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/sites/sites_example.py -------------------------------------------------------------------------------- /samples/spreadsheets/spreadsheetExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/spreadsheets/spreadsheetExample.py -------------------------------------------------------------------------------- /samples/webmastertools/AddDeleteExampleDotCom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/webmastertools/AddDeleteExampleDotCom.py -------------------------------------------------------------------------------- /samples/webmastertools/SitemapsFeedSummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/webmastertools/SitemapsFeedSummary.py -------------------------------------------------------------------------------- /samples/webmastertools/SitesFeedSummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/samples/webmastertools/SitesFeedSummary.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/setup.py -------------------------------------------------------------------------------- /src/atom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/atom/__init__.py -------------------------------------------------------------------------------- /src/atom/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/atom/auth.py -------------------------------------------------------------------------------- /src/atom/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/atom/client.py -------------------------------------------------------------------------------- /src/atom/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/atom/core.py -------------------------------------------------------------------------------- /src/atom/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/atom/data.py -------------------------------------------------------------------------------- /src/atom/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/atom/http.py -------------------------------------------------------------------------------- /src/atom/http_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/atom/http_core.py -------------------------------------------------------------------------------- /src/atom/http_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/atom/http_interface.py -------------------------------------------------------------------------------- /src/atom/mock_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/atom/mock_http.py -------------------------------------------------------------------------------- /src/atom/mock_http_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/atom/mock_http_core.py -------------------------------------------------------------------------------- /src/atom/mock_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/atom/mock_service.py -------------------------------------------------------------------------------- /src/atom/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/atom/service.py -------------------------------------------------------------------------------- /src/atom/token_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/atom/token_store.py -------------------------------------------------------------------------------- /src/atom/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/atom/url.py -------------------------------------------------------------------------------- /src/gdata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/__init__.py -------------------------------------------------------------------------------- /src/gdata/acl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/acl/__init__.py -------------------------------------------------------------------------------- /src/gdata/acl/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/acl/data.py -------------------------------------------------------------------------------- /src/gdata/alt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/alt/__init__.py -------------------------------------------------------------------------------- /src/gdata/alt/app_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/alt/app_engine.py -------------------------------------------------------------------------------- /src/gdata/alt/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/alt/appengine.py -------------------------------------------------------------------------------- /src/gdata/analytics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/analytics/__init__.py -------------------------------------------------------------------------------- /src/gdata/analytics/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/analytics/client.py -------------------------------------------------------------------------------- /src/gdata/analytics/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/analytics/data.py -------------------------------------------------------------------------------- /src/gdata/analytics/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/analytics/service.py -------------------------------------------------------------------------------- /src/gdata/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/__init__.py -------------------------------------------------------------------------------- /src/gdata/apps/adminsettings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/adminsettings/__init__.py -------------------------------------------------------------------------------- /src/gdata/apps/adminsettings/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/adminsettings/service.py -------------------------------------------------------------------------------- /src/gdata/apps/apps_property_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/apps_property_entry.py -------------------------------------------------------------------------------- /src/gdata/apps/audit/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/gdata/apps/audit/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/audit/service.py -------------------------------------------------------------------------------- /src/gdata/apps/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/client.py -------------------------------------------------------------------------------- /src/gdata/apps/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/data.py -------------------------------------------------------------------------------- /src/gdata/apps/emailsettings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/emailsettings/__init__.py -------------------------------------------------------------------------------- /src/gdata/apps/emailsettings/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/emailsettings/client.py -------------------------------------------------------------------------------- /src/gdata/apps/emailsettings/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/emailsettings/data.py -------------------------------------------------------------------------------- /src/gdata/apps/emailsettings/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/emailsettings/service.py -------------------------------------------------------------------------------- /src/gdata/apps/groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gdata/apps/groups/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/groups/client.py -------------------------------------------------------------------------------- /src/gdata/apps/groups/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/groups/data.py -------------------------------------------------------------------------------- /src/gdata/apps/groups/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/groups/service.py -------------------------------------------------------------------------------- /src/gdata/apps/migration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/migration/__init__.py -------------------------------------------------------------------------------- /src/gdata/apps/migration/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/migration/service.py -------------------------------------------------------------------------------- /src/gdata/apps/multidomain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gdata/apps/multidomain/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/multidomain/client.py -------------------------------------------------------------------------------- /src/gdata/apps/multidomain/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/multidomain/data.py -------------------------------------------------------------------------------- /src/gdata/apps/organization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gdata/apps/organization/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/organization/client.py -------------------------------------------------------------------------------- /src/gdata/apps/organization/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/organization/data.py -------------------------------------------------------------------------------- /src/gdata/apps/organization/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/organization/service.py -------------------------------------------------------------------------------- /src/gdata/apps/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps/service.py -------------------------------------------------------------------------------- /src/gdata/apps_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/apps_property.py -------------------------------------------------------------------------------- /src/gdata/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/auth.py -------------------------------------------------------------------------------- /src/gdata/blogger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/blogger/__init__.py -------------------------------------------------------------------------------- /src/gdata/blogger/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/blogger/client.py -------------------------------------------------------------------------------- /src/gdata/blogger/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/blogger/data.py -------------------------------------------------------------------------------- /src/gdata/blogger/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/blogger/service.py -------------------------------------------------------------------------------- /src/gdata/calendar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/calendar/__init__.py -------------------------------------------------------------------------------- /src/gdata/calendar/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/calendar/client.py -------------------------------------------------------------------------------- /src/gdata/calendar/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/calendar/data.py -------------------------------------------------------------------------------- /src/gdata/calendar/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/calendar/service.py -------------------------------------------------------------------------------- /src/gdata/calendar_resource/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/gdata/calendar_resource/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/calendar_resource/client.py -------------------------------------------------------------------------------- /src/gdata/calendar_resource/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/calendar_resource/data.py -------------------------------------------------------------------------------- /src/gdata/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/client.py -------------------------------------------------------------------------------- /src/gdata/codesearch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/codesearch/__init__.py -------------------------------------------------------------------------------- /src/gdata/codesearch/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/codesearch/service.py -------------------------------------------------------------------------------- /src/gdata/contacts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/contacts/__init__.py -------------------------------------------------------------------------------- /src/gdata/contacts/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/contacts/client.py -------------------------------------------------------------------------------- /src/gdata/contacts/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/contacts/data.py -------------------------------------------------------------------------------- /src/gdata/contacts/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/contacts/service.py -------------------------------------------------------------------------------- /src/gdata/contentforshopping/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/contentforshopping/__init__.py -------------------------------------------------------------------------------- /src/gdata/contentforshopping/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/contentforshopping/client.py -------------------------------------------------------------------------------- /src/gdata/contentforshopping/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/contentforshopping/data.py -------------------------------------------------------------------------------- /src/gdata/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/core.py -------------------------------------------------------------------------------- /src/gdata/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/data.py -------------------------------------------------------------------------------- /src/gdata/docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/docs/__init__.py -------------------------------------------------------------------------------- /src/gdata/docs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/docs/client.py -------------------------------------------------------------------------------- /src/gdata/docs/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/docs/data.py -------------------------------------------------------------------------------- /src/gdata/docs/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/docs/service.py -------------------------------------------------------------------------------- /src/gdata/dublincore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/dublincore/__init__.py -------------------------------------------------------------------------------- /src/gdata/dublincore/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/dublincore/data.py -------------------------------------------------------------------------------- /src/gdata/exif/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/exif/__init__.py -------------------------------------------------------------------------------- /src/gdata/gauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/gauth.py -------------------------------------------------------------------------------- /src/gdata/geo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/geo/__init__.py -------------------------------------------------------------------------------- /src/gdata/geo/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/geo/data.py -------------------------------------------------------------------------------- /src/gdata/marketplace/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/gdata/marketplace/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/marketplace/client.py -------------------------------------------------------------------------------- /src/gdata/marketplace/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/marketplace/data.py -------------------------------------------------------------------------------- /src/gdata/media/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/media/__init__.py -------------------------------------------------------------------------------- /src/gdata/media/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/media/data.py -------------------------------------------------------------------------------- /src/gdata/oauth/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/oauth/CHANGES.txt -------------------------------------------------------------------------------- /src/gdata/oauth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/oauth/__init__.py -------------------------------------------------------------------------------- /src/gdata/oauth/rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/oauth/rsa.py -------------------------------------------------------------------------------- /src/gdata/opensearch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/opensearch/__init__.py -------------------------------------------------------------------------------- /src/gdata/opensearch/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/opensearch/data.py -------------------------------------------------------------------------------- /src/gdata/photos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/photos/__init__.py -------------------------------------------------------------------------------- /src/gdata/photos/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/photos/service.py -------------------------------------------------------------------------------- /src/gdata/projecthosting/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/gdata/projecthosting/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/projecthosting/client.py -------------------------------------------------------------------------------- /src/gdata/projecthosting/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/projecthosting/data.py -------------------------------------------------------------------------------- /src/gdata/sample_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/sample_util.py -------------------------------------------------------------------------------- /src/gdata/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/service.py -------------------------------------------------------------------------------- /src/gdata/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gdata/sites/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/sites/client.py -------------------------------------------------------------------------------- /src/gdata/sites/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/sites/data.py -------------------------------------------------------------------------------- /src/gdata/spreadsheet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/spreadsheet/__init__.py -------------------------------------------------------------------------------- /src/gdata/spreadsheet/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/spreadsheet/service.py -------------------------------------------------------------------------------- /src/gdata/spreadsheet/text_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/spreadsheet/text_db.py -------------------------------------------------------------------------------- /src/gdata/spreadsheets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gdata/spreadsheets/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/spreadsheets/client.py -------------------------------------------------------------------------------- /src/gdata/spreadsheets/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/spreadsheets/data.py -------------------------------------------------------------------------------- /src/gdata/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/test_config.py -------------------------------------------------------------------------------- /src/gdata/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/test_data.py -------------------------------------------------------------------------------- /src/gdata/urlfetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/urlfetch.py -------------------------------------------------------------------------------- /src/gdata/webmastertools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/webmastertools/__init__.py -------------------------------------------------------------------------------- /src/gdata/webmastertools/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/webmastertools/data.py -------------------------------------------------------------------------------- /src/gdata/webmastertools/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/webmastertools/service.py -------------------------------------------------------------------------------- /src/gdata/youtube/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/youtube/__init__.py -------------------------------------------------------------------------------- /src/gdata/youtube/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/youtube/client.py -------------------------------------------------------------------------------- /src/gdata/youtube/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/youtube/data.py -------------------------------------------------------------------------------- /src/gdata/youtube/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/src/gdata/youtube/service.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/all_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/all_tests.py -------------------------------------------------------------------------------- /tests/all_tests_cached.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/all_tests_cached.py -------------------------------------------------------------------------------- /tests/all_tests_clear_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/all_tests_clear_cache.py -------------------------------------------------------------------------------- /tests/all_tests_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/all_tests_coverage.py -------------------------------------------------------------------------------- /tests/all_tests_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/all_tests_local.py -------------------------------------------------------------------------------- /tests/atom_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/atom_test.py -------------------------------------------------------------------------------- /tests/atom_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/atom_tests/auth_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/atom_tests/auth_test.py -------------------------------------------------------------------------------- /tests/atom_tests/client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/atom_tests/client_test.py -------------------------------------------------------------------------------- /tests/atom_tests/core_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/atom_tests/core_test.py -------------------------------------------------------------------------------- /tests/atom_tests/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/atom_tests/data_test.py -------------------------------------------------------------------------------- /tests/atom_tests/http_core_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/atom_tests/http_core_test.py -------------------------------------------------------------------------------- /tests/atom_tests/http_interface_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/atom_tests/http_interface_test.py -------------------------------------------------------------------------------- /tests/atom_tests/mock_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/atom_tests/mock_client_test.py -------------------------------------------------------------------------------- /tests/atom_tests/mock_http_core_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/atom_tests/mock_http_core_test.py -------------------------------------------------------------------------------- /tests/atom_tests/mock_http_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/atom_tests/mock_http_test.py -------------------------------------------------------------------------------- /tests/atom_tests/mock_server_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/atom_tests/mock_server_test.py -------------------------------------------------------------------------------- /tests/atom_tests/service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/atom_tests/service_test.py -------------------------------------------------------------------------------- /tests/atom_tests/token_store_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/atom_tests/token_store_test.py -------------------------------------------------------------------------------- /tests/atom_tests/url_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/atom_tests/url_test.py -------------------------------------------------------------------------------- /tests/coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/coverage.py -------------------------------------------------------------------------------- /tests/files/testimage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/files/testimage.jpg -------------------------------------------------------------------------------- /tests/gdata_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/analytics/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/analytics/data_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/analytics/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/analytics/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/analytics/query_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/analytics/query_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps/AppsServiceTestForGetGeneratorForAllEmailLists.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/AppsServiceTestForGetGeneratorForAllEmailLists.pickle -------------------------------------------------------------------------------- /tests/gdata_tests/apps/AppsServiceTestForGetGeneratorForAllNicknames.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/AppsServiceTestForGetGeneratorForAllNicknames.pickle -------------------------------------------------------------------------------- /tests/gdata_tests/apps/AppsServiceTestForGetGeneratorForAllRecipients.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/AppsServiceTestForGetGeneratorForAllRecipients.pickle -------------------------------------------------------------------------------- /tests/gdata_tests/apps/AppsServiceTestForGetGeneratorForAllUsers.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/AppsServiceTestForGetGeneratorForAllUsers.pickle -------------------------------------------------------------------------------- /tests/gdata_tests/apps/TestDataForGeneratorTest.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/TestDataForGeneratorTest.p -------------------------------------------------------------------------------- /tests/gdata_tests/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/apps/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/data_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps/emailsettings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/apps/emailsettings/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/emailsettings/data_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps/emailsettings/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/emailsettings/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps/emailsettings/service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/emailsettings/service_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps/groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/apps/groups/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/groups/data_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps/groups/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/groups/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps/groups/service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/groups/service_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps/migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/apps/migration/service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/migration/service_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps/multidomain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/apps/multidomain/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/multidomain/data_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps/multidomain/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/multidomain/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps/organization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/apps/organization/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/organization/data_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps/organization/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/organization/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps/organization/service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/organization/service_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps/service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/service_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps/service_test_using_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps/service_test_using_mock.py -------------------------------------------------------------------------------- /tests/gdata_tests/apps_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/apps_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/auth_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/auth_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/blogger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/blogger/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/blogger/data_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/blogger/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/blogger/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/blogger/service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/blogger/service_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/blogger_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/blogger_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/calendar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/calendar/calendar_acl_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/calendar/calendar_acl_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/calendar/service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/calendar/service_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/calendar_resource/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/calendar_resource/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/calendar_resource/data_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/calendar_resource/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/calendar_resource/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/calendar_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/calendar_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/client_smoke_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/client_smoke_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/codesearch_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/codesearch_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/contacts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/contacts/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/contacts/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/contacts/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/contacts/profiles/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/contacts/profiles/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/contacts/profiles/service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/contacts/profiles/service_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/contacts/service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/contacts/service_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/contacts_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/contacts_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/contentforshopping_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/contentforshopping_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/core_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/core_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/data_smoke_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/data_smoke_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/data_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/docs/data/test.0.bin: -------------------------------------------------------------------------------- 1 | 1234 2 | -------------------------------------------------------------------------------- /tests/gdata_tests/docs/data/test.0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/docs/data/test.0.csv -------------------------------------------------------------------------------- /tests/gdata_tests/docs/data/test.0.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/docs/data/test.0.doc -------------------------------------------------------------------------------- /tests/gdata_tests/docs/data/test.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/docs/data/test.0.pdf -------------------------------------------------------------------------------- /tests/gdata_tests/docs/data/test.0.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/docs/data/test.0.ppt -------------------------------------------------------------------------------- /tests/gdata_tests/docs/data/test.0.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/docs/data/test.0.wmf -------------------------------------------------------------------------------- /tests/gdata_tests/docs/data/test.1.bin: -------------------------------------------------------------------------------- 1 | lorem ipsum dolar 2 | -------------------------------------------------------------------------------- /tests/gdata_tests/docs/data/test.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/docs/data/test.1.csv -------------------------------------------------------------------------------- /tests/gdata_tests/docs/data/test.1.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/docs/data/test.1.doc -------------------------------------------------------------------------------- /tests/gdata_tests/docs/data/test.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/docs/data/test.1.pdf -------------------------------------------------------------------------------- /tests/gdata_tests/docs/data/test.1.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/docs/data/test.1.ppt -------------------------------------------------------------------------------- /tests/gdata_tests/docs/data/test.1.wmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/docs/data/test.1.wmf -------------------------------------------------------------------------------- /tests/gdata_tests/docs/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/docs/data_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/docs/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/docs/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/docs/service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/docs/service_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/docs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/docs_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/gauth_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/gauth_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/marketplace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/marketplace/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/marketplace/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/oauth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/oauth/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/oauth/data_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/photos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/photos/service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/photos/service_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/photos_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/photos_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/projecthosting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/projecthosting/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/projecthosting/data_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/projecthosting/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/projecthosting/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/resumable_upload_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/resumable_upload_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/sample_util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/sample_util_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/service_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/sites/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/sites/data_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/sites/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/sites/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/spreadsheet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/spreadsheet/service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/spreadsheet/service_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/spreadsheet/text_db_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/spreadsheet/text_db_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/spreadsheet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/spreadsheet_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/spreadsheets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/spreadsheets/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/spreadsheets/data_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/spreadsheets/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/spreadsheets/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/webmastertools_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/webmastertools_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/youtube/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gdata_tests/youtube/live_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/youtube/live_client_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/youtube/service_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/youtube/service_test.py -------------------------------------------------------------------------------- /tests/gdata_tests/youtube_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/gdata_tests/youtube_test.py -------------------------------------------------------------------------------- /tests/module_test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/module_test_runner.py -------------------------------------------------------------------------------- /tests/run_all_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/run_all_tests.py -------------------------------------------------------------------------------- /tests/run_data_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/run_data_tests.py -------------------------------------------------------------------------------- /tests/run_service_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/run_service_tests.py -------------------------------------------------------------------------------- /tests/testimage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/tests/testimage.jpg -------------------------------------------------------------------------------- /upload-diffs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gdata-python-client/HEAD/upload-diffs.py --------------------------------------------------------------------------------