From 334b6e6d9e4924398e57bad2e53747584abf8cf4 Mon Sep 17 00:00:00 2001 From: Harrison Zhao Date: Fri, 27 Nov 2020 17:58:02 -0800 Subject: [PATCH] docs: fix MediaIoBaseUpload broken link (#1112) --- docs/media.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/media.md b/docs/media.md index 6bee48e3c17..433c01b4823 100644 --- a/docs/media.md +++ b/docs/media.md @@ -71,5 +71,5 @@ except apiclient.errors.HttpError, e: ## Extending MediaUpload -Your application may need to upload a media object that isn't a file. For example, you may create a large image on the fly from a data set. For such cases you can create a subclass of [MediaUpload](https://googleapis.github.io/google-api-python-client/docs/epy/googleapiclient.http.MediaUpload-class.html) which provides the data to be uploaded. You must fully implement the MediaUpload interface. See the source for the [MediaFileUpload](https://googleapis.github.io/google-api-python-client/docs/epy/googleapiclient.http.MediaFileUpload-class.html), [MediaIoBaseUpload](MediaIoBaseUpload), and [MediaInMemoryUpload](https://googleapis.github.io/google-api-python-client/docs/epy/googleapiclient.http.MediaInMemoryUpload-class.html) classes as examples. +Your application may need to upload a media object that isn't a file. For example, you may create a large image on the fly from a data set. For such cases you can create a subclass of [MediaUpload](https://googleapis.github.io/google-api-python-client/docs/epy/googleapiclient.http.MediaUpload-class.html) which provides the data to be uploaded. You must fully implement the MediaUpload interface. See the source for the [MediaFileUpload](https://googleapis.github.io/google-api-python-client/docs/epy/googleapiclient.http.MediaFileUpload-class.html), [MediaIoBaseUpload](https://googleapis.github.io/google-api-python-client/docs/epy/googleapiclient.http.MediaIoBaseUpload-class.html), and [MediaInMemoryUpload](https://googleapis.github.io/google-api-python-client/docs/epy/googleapiclient.http.MediaInMemoryUpload-class.html) classes as examples.