Skip to content

Commit 48f503f

Browse files
authored
docs: changed http to https in setup, updated github links (#892)
1 parent 6ddadd7 commit 48f503f

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,14 +116,14 @@
116116
Version 1.7.7
117117

118118
Bugfix release
119-
- Change xrange to range ([#601](https://github.com/google/google-api-python-client/pull/601))
120-
- Typo in http.py exception message. ([#602](https://github.com/google/google-api-python-client/pull/602))
119+
- Change xrange to range ([#601](https://github.com/googleapis/google-api-python-client/pull/601))
120+
- Typo in http.py exception message. ([#602](https://github.com/googleapis/google-api-python-client/pull/602))
121121

122-
- Announce deprecation of Python 2.7 ([#603](https://github.com/google/google-api-python-client/pull/603))
123-
- Updates documentation for stopping channel subscriptions ([#598](https://github.com/google/google-api-python-client/pull/598))
124-
- Adding example for searchAppearance ([#414](https://github.com/google/google-api-python-client/pull/414))
122+
- Announce deprecation of Python 2.7 ([#603](https://github.com/googleapis/google-api-python-client/pull/603))
123+
- Updates documentation for stopping channel subscriptions ([#598](https://github.com/googleapis/google-api-python-client/pull/598))
124+
- Adding example for searchAppearance ([#414](https://github.com/googleapis/google-api-python-client/pull/414))
125125

126-
- Add badges ([#455](https://github.com/google/google-api-python-client/pull/455))
126+
- Add badges ([#455](https://github.com/googleapis/google-api-python-client/pull/455))
127127

128128
### v1.7.6
129129
Version 1.7.6

docs/epy/googleapiclient.http-pysrc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1513,7 +1513,7 @@ <h1 class="epydoc">Source Code for <a href="googleapiclient.http-module.html">Mo
15131513
<a name="L1249"></a><tt class="py-lineno">1249</tt> <tt class="py-line"> </tt>
15141514
<a name="L1250"></a><tt class="py-lineno">1250</tt> <tt class="py-line"> <tt class="py-comment"># NB: we intentionally leave whitespace between base/id and '+', so RFC2822</tt> </tt>
15151515
<a name="L1251"></a><tt class="py-lineno">1251</tt> <tt class="py-line"> <tt class="py-comment"># line folding works properly on Python 3; see</tt> </tt>
1516-
<a name="L1252"></a><tt class="py-lineno">1252</tt> <tt class="py-line"> <tt class="py-comment"># https://github.com/google/google-api-python-client/issues/164</tt> </tt>
1516+
<a name="L1252"></a><tt class="py-lineno">1252</tt> <tt class="py-line"> <tt class="py-comment"># https://github.com/googleapis/google-api-python-client/issues/164</tt> </tt>
15171517
<a name="L1253"></a><tt class="py-lineno">1253</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-string">"&lt;%s + %s&gt;"</tt> <tt class="py-op">%</tt> <tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">.</tt><tt class="py-name">_base_id</tt><tt class="py-op">,</tt> <tt class="py-name">quote</tt><tt class="py-op">(</tt><tt class="py-name">id_</tt><tt class="py-op">)</tt><tt class="py-op">)</tt> </tt>
15181518
</div><a name="L1254"></a><tt class="py-lineno">1254</tt> <tt class="py-line"> </tt>
15191519
<a name="BatchHttpRequest._header_to_id"></a><div id="BatchHttpRequest._header_to_id-def"><a name="L1255"></a><tt class="py-lineno">1255</tt> <a class="py-toggle" href="#" id="BatchHttpRequest._header_to_id-toggle" onclick="return toggle('BatchHttpRequest._header_to_id');">-</a><tt class="py-line"> <tt class="py-keyword">def</tt> <a class="py-def-name" href="googleapiclient.http.BatchHttpRequest-class.html#_header_to_id">_header_to_id</a><tt class="py-op">(</tt><tt class="py-param">self</tt><tt class="py-op">,</tt> <tt class="py-param">header</tt><tt class="py-op">)</tt><tt class="py-op">:</tt> </tt>

docs/mocks.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Mocks
22

3-
The use of [Mock objects](http://en.wikipedia.org/wiki/Mock_object) is a standard testing methodology for Python and other object-oriented languages. This library defines Mock classes that simulate responses to API calls. You can use them to test how your code handles basic interactions with Google APIs.
3+
The use of [Mock objects](https://en.wikipedia.org/wiki/Mock_object) is a standard testing methodology for Python and other object-oriented languages. This library defines Mock classes that simulate responses to API calls. You can use them to test how your code handles basic interactions with Google APIs.
44

5-
> **Note:** Many of the [Python Client Library test scripts](https://github.com/google/google-api-python-client/tree/master/tests) use these classes.
5+
> **Note:** Many of the [Python Client Library test scripts](https://github.com/googleapis/google-api-python-client/tree/master/tests) use these classes.
66
77
## HttpMock
88

@@ -103,4 +103,4 @@ service = build('books', 'v1',
103103
developerKey=your_api_key)
104104
request = service.volumes().list(source='public', q='android')
105105
response = request.execute()
106-
```
106+
```

googleapiclient/http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1249,7 +1249,7 @@ def _id_to_header(self, id_):
12491249

12501250
# NB: we intentionally leave whitespace between base/id and '+', so RFC2822
12511251
# line folding works properly on Python 3; see
1252-
# https://github.com/google/google-api-python-client/issues/164
1252+
# https://github.com/googleapis/google-api-python-client/issues/164
12531253
return "<%s + %s>" % (self._base_id, quote(id_))
12541254

12551255
def _header_to_id(self, header):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
long_description_content_type='text/markdown',
6363
author="Google LLC",
6464
author_email="[email protected]",
65-
url="http://github.com/google/google-api-python-client/",
65+
url="https://github.com/googleapis/google-api-python-client/",
6666
install_requires=install_requires,
6767
python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
6868
packages=packages,

0 commit comments

Comments
 (0)