- Improve wording of sentence describing proxy environment
variable setting.
- Mention that proxy URLs must include the scheme.
requests.get("http://example.org", proxies=proxies)
-You can also configure proxies by environment variables ``HTTP_PROXY`` and ``HTTPS_PROXY``.
+You can also configure proxies by setting the environment variables
+``HTTP_PROXY`` and ``HTTPS_PROXY``.
::
"http": "http://user:pass@10.10.1.10:3128/",
}
+Note that proxy URLs must include the scheme.
+
Compliance
----------