summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.org>2017-03-19 21:14:17 -0400
committerKenneth Reitz <me@kennethreitz.org>2017-03-19 21:14:17 -0400
commitb60c5a5ed46d75c56e36db5a58a98a50d880141d (patch)
tree2e5db6dde49f929c9e7a4bd314bc8b49b61b0fba /docs
parent1cb759a9d97f9f3245ed67facaca1fedff3ca833 (diff)
parent552ab7a064ef4863d4ddd2e1317882bdfacc4510 (diff)
downloadpython-requests-b60c5a5ed46d75c56e36db5a58a98a50d880141d.tar.gz
Merge branch 'master' of github.com:kennethreitz/requests
Diffstat (limited to 'docs')
-rw-r--r--docs/_static/requests-logo-small.pngbin0 -> 158916 bytes
-rw-r--r--docs/_templates/sidebarintro.html1
-rw-r--r--docs/_templates/sidebarlogo.html1
-rw-r--r--docs/index.rst24
-rw-r--r--docs/user/advanced.rst2
5 files changed, 15 insertions, 13 deletions
diff --git a/docs/_static/requests-logo-small.png b/docs/_static/requests-logo-small.png
new file mode 100644
index 00000000..afadeaa4
--- /dev/null
+++ b/docs/_static/requests-logo-small.png
Binary files differ
diff --git a/docs/_templates/sidebarintro.html b/docs/_templates/sidebarintro.html
index fc9a659a..fe113734 100644
--- a/docs/_templates/sidebarintro.html
+++ b/docs/_templates/sidebarintro.html
@@ -40,6 +40,7 @@
<p>More <a href="http://kennethreitz.org/">Kenneth Reitz</a> projects:</p>
<ul>
+ <li><a href="http://edmsynths.com/">edmsynths.com</a></li>
<li><a href="http://pipenv.org/">pipenv</a></li>
<li><a href="http://pep8.org/">pep8.org</a></li>
<li><a href="http://httpbin.org/">httpbin.org</a></li>
diff --git a/docs/_templates/sidebarlogo.html b/docs/_templates/sidebarlogo.html
index 4c05a538..2fb8062b 100644
--- a/docs/_templates/sidebarlogo.html
+++ b/docs/_templates/sidebarlogo.html
@@ -42,6 +42,7 @@
<p>More <a href="http://kennethreitz.org/">Kenneth Reitz</a> projects:</p>
<ul>
+ <li><a href="http://edmsynths.com/">edmsynths.com</a></li>
<li><a href="http://pipenv.org/">pipenv</a></li>
<li><a href="http://pep8.org/">pep8.org</a></li>
<li><a href="http://httpbin.org/">httpbin.org</a></li>
diff --git a/docs/index.rst b/docs/index.rst
index c1d78c87..b7843e70 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -68,21 +68,21 @@ PayPal, NPR, Obama for America, Transifex, Native Instruments, The Washington
Post, Twitter, SoundCloud, Kippt, Sony, and Federal U.S.
Institutions that prefer to be unnamed claim to use Requests internally.
-**Armin Ronacher**
- Requests is the perfect example how beautiful an API can be with the
- right level of abstraction.
+**Armin Ronacher**—
+ *Requests is the perfect example how beautiful an API can be with the
+ right level of abstraction.*
-**Matt DeBoard**
- I'm going to get `@kennethreitz <https://twitter.com/kennethreitz>`_'s Python requests module tattooed
- on my body, somehow. The whole thing.
+**Matt DeBoard**—
+ *I'm going to get `@kennethreitz <https://twitter.com/kennethreitz>`_'s Python requests module tattooed
+ on my body, somehow. The whole thing.*
-**Daniel Greenfeld**
- Nuked a 1200 LOC spaghetti code library with 10 lines of code thanks to
- `@kennethreitz <https://twitter.com/kennethreitz>`_'s request library. Today has been AWESOME.
+**Daniel Greenfeld**—
+ *Nuked a 1200 LOC spaghetti code library with 10 lines of code thanks to
+ `@kennethreitz <https://twitter.com/kennethreitz>`_'s request library. Today has been AWESOME.*
-**Kenny Meyers**
- Python HTTP: When in doubt, or when not in doubt, use Requests. Beautiful,
- simple, Pythonic.
+**Kenny Meyers**—
+ *Python HTTP: When in doubt, or when not in doubt, use Requests. Beautiful,
+ simple, Pythonic.*
Requests is one of the most downloaded Python packages of all time, pulling in
over 11,000,000 downloads every month. All the cool kids are doing it!
diff --git a/docs/user/advanced.rst b/docs/user/advanced.rst
index 3c63394d..0806ff6d 100644
--- a/docs/user/advanced.rst
+++ b/docs/user/advanced.rst
@@ -227,7 +227,7 @@ By default, ``verify`` is set to True. Option ``verify`` only applies to host ce
You can also specify a local cert to use as client side certificate, as a single
file (containing the private key and the certificate) or as a tuple of both
-file's path::
+files' paths::
>>> requests.get('https://kennethreitz.org', cert=('/path/client.cert', '/path/client.key'))
<Response [200]>