Skip to content

Commit a7b25e9

Browse files
author
Kenneth Reitz
committed
clients
1 parent da24fa2 commit a7b25e9

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

docs/contents.rst.inc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ different scenarios.
4444
.. toctree::
4545
:maxdepth: 2
4646

47+
scenarios/client
4748
scenarios/web
4849
scenarios/cli
4950
scenarios/gui

docs/scenarios/client.rst

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Network Applications
2+
====================
3+
4+
5+
6+
HTTP
7+
::::
8+
9+
10+
Requests
11+
--------
12+
13+
Requests is an ISC Licensed HTTP library, written in Python, for human beings.
14+
15+
Python’s standard urllib2 module provides most of the HTTP capabilities you need, but the API is thoroughly broken. It was built for a different time — and a different web. It requires an enormous amount of work (even method overrides) to perform the simplest of tasks.
16+
17+
Requests takes all of the work out of Python HTTP — making your integration with web services seamless. There’s no need to manually add query strings to your URLs, or to form-encode your POST data. Keep-alive and HTTP connection pooling are 100% automatic, powered by urllib3, which is embedded within Requests
18+
19+
- `Documention <http://docs.python-requests.org/en/latest/index.html>`_
20+
- `PyPi <http://pypi.python.org/pypi/requests>`_
21+
- `GitHub <https://github.com/kennethreitz/requests>`_
22+
23+
24+
Distributed Systems
25+
::::::::::::::::::::
26+
27+
28+
ZeroMQ
29+
------
30+
31+
ØMQ (also spelled ZeroMQ, 0MQ or ZMQ) is a high-performance asynchronous messaging library aimed at use in scalable distributed or concurrent applications. It provides a message queue, but unlike message-oriented middleware, a ØMQ system can run without a dedicated message broker. The library is designed to have a familiar socket-style API.

0 commit comments

Comments
 (0)