1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>kombu - AMQP Messaging Framework for Python — Kombu v1.4.0 documentation</title>
<link rel="stylesheet" href="_static/celery.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
VERSION: '1.4.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<link rel="top" title="Kombu v1.4.0 documentation" href="index.html" />
<link rel="next" title="User Guide" href="userguide/index.html" />
<link rel="prev" title="Kombu Documentation" href="index.html" />
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="userguide/index.html" title="User Guide"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="index.html" title="Kombu Documentation"
accesskey="P">previous</a> |</li>
<li><a href="index.html">Kombu v1.4.0 documentation</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="kombu-amqp-messaging-framework-for-python">
<h1>kombu - AMQP Messaging Framework for Python<a class="headerlink" href="#kombu-amqp-messaging-framework-for-python" title="Permalink to this headline">¶</a></h1>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field"><th class="field-name">Version:</th><td class="field-body">1.4.0</td>
</tr>
</tbody>
</table>
<div class="section" id="synopsis">
<h2>Synopsis<a class="headerlink" href="#synopsis" title="Permalink to this headline">¶</a></h2>
<p><cite>Kombu</cite> is an <a class="reference external" href="http://amqp.org">AMQP</a> messaging framework for Python.</p>
<p>AMQP is the Advanced Message Queuing Protocol, an open standard protocol
for message orientation, queuing, routing, reliability and security.</p>
<p>One of the most popular implementations of AMQP is <a class="reference external" href="http://www.rabbitmq.com/">RabbitMQ</a>.</p>
<p>The aim of <cite>Kombu</cite> is to make messaging in Python as easy as possible by
providing an idiomatic high-level interface for the AMQP protocol, and also
provide proven and tested solutions to common messaging problems.</p>
</div>
<div class="section" id="features">
<h2>Features<a class="headerlink" href="#features" title="Permalink to this headline">¶</a></h2>
<ul>
<li><p class="first">Allows application authors to support several message server
solutions by using pluggable transports.</p>
<blockquote>
<div><ul class="simple">
<li>AMQP transports for both the <a class="reference external" href="http://barryp.org/software/py-amqplib/">amqplib</a> (sync) and
<a class="reference external" href="http://github.com/pika/pika">pika</a> (sync + async) clients.</li>
<li>Virtual transports makes it really easy to add support for non-AMQP
transports. There is already built-in support for <a class="reference external" href="http://code.google.com/p/redis/">Redis</a>,
<a class="reference external" href="http://kr.github.com/beanstalkd/">Beanstalk</a>, <a class="reference external" href="http://aws.amazon.com/sqs/">Amazon SQS</a>, <a class="reference external" href="http://couchdb.apache.org/">CouchDB</a>, and <a class="reference external" href="http://www.mongodb.org/">MongoDB</a>.</li>
<li>SQLAlchemy and Django ORM transports exists as plug-ins (
<a class="reference external" href="http://github.com/ask/kombu-sqlalchemy/">kombu-sqlalchemy</a> and <a class="reference external" href="http://github.com/ask/django-kombu/">django-kombu</a>).</li>
<li>In-memory transport for unit testing.</li>
</ul>
</div></blockquote>
</li>
<li><p class="first">Supports automatic encoding, serialization and compression of message
payloads.</p>
</li>
<li><p class="first">Consistent exception handling across transports.</p>
</li>
<li><p class="first">The ability to ensure that an operation is performed by gracefully
handling connection and channel errrors.</p>
</li>
<li><p class="first">Several annoyances with <a class="reference external" href="http://barryp.org/software/py-amqplib/">amqplib</a> has been fixed, like supporting
timeouts and the ability to wait for events on more than one channel.</p>
</li>
<li><p class="first">Projects already using <a class="reference external" href="http://pypi.python.org/pypi/carrot/">carrot</a> can easily be ported by using
a compatibility layer.</p>
</li>
</ul>
<p>For an introduction to AMQP you should read the article <a class="reference external" href="http://blogs.digitar.com/jjww/2009/01/rabbits-and-warrens/">Rabbits and warrens</a>,
and the <a class="reference external" href="http://en.wikipedia.org/wiki/AMQP">Wikipedia article about AMQP</a>.</p>
</div>
<div class="section" id="transport-comparison">
<h2>Transport Comparison<a class="headerlink" href="#transport-comparison" title="Permalink to this headline">¶</a></h2>
<table border="1" class="docutils">
<colgroup>
<col width="24%" />
<col width="16%" />
<col width="19%" />
<col width="17%" />
<col width="24%" />
</colgroup>
<tbody valign="top">
<tr><td><strong>Client</strong></td>
<td><strong>Type</strong></td>
<td><strong>Direct</strong></td>
<td><strong>Topic</strong></td>
<td><strong>Fanout</strong></td>
</tr>
<tr><td><em>amqplib</em></td>
<td>Native</td>
<td>Yes</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr><td><em>pika</em></td>
<td>Native</td>
<td>Yes</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr><td><em>redis</em></td>
<td>Virtual</td>
<td>Yes</td>
<td>Yes[*]_</td>
<td>Yes (PUB/SUB)</td>
</tr>
<tr><td><em>beanstalk</em></td>
<td>Virtual</td>
<td>Yes</td>
<td>Yes[*]_</td>
<td>No</td>
</tr>
<tr><td><em>SQS</em></td>
<td>Virtual</td>
<td>Yes</td>
<td>Yes[*]_</td>
<td>Yes[#]_</td>
</tr>
<tr><td><em>mongodb</em></td>
<td>Virtual</td>
<td>Yes</td>
<td>Yes[*]_</td>
<td>No</td>
</tr>
<tr><td><em>couchdb</em></td>
<td>Virtual</td>
<td>Yes</td>
<td>Yes[*]_</td>
<td>No</td>
</tr>
<tr><td><em>in-memory</em></td>
<td>Virtual</td>
<td>Yes</td>
<td>Yes[*]_</td>
<td>No</td>
</tr>
</tbody>
</table>
<table class="docutils footnote" frame="void" id="id1" rules="none">
<colgroup><col class="label" /><col /></colgroup>
<tbody valign="top">
<tr><td class="label">[*]</td><td>Declarations only kept in memory, so exchanges/queues
must be declared by all clients that needs them.</td></tr>
</tbody>
</table>
<table class="docutils footnote" frame="void" id="id2" rules="none">
<colgroup><col class="label" /><col /></colgroup>
<tbody valign="top">
<tr><td class="label">[1]</td><td>Fanout supported via storing routing tables in SimpleDB.
Can be disabled by setting the <tt class="docutils literal"><span class="pre">supports_fanout</span></tt> transport option.</td></tr>
</tbody>
</table>
<div class="section" id="documentation">
<h3>Documentation<a class="headerlink" href="#documentation" title="Permalink to this headline">¶</a></h3>
<p>Kombu is using Sphinx, and the latest documentation is available at GitHub:</p>
<blockquote>
<div><a class="reference external" href="http://ask.github.com/kombu">http://ask.github.com/kombu</a></div></blockquote>
</div>
<div class="section" id="quick-overview">
<h3>Quick overview<a class="headerlink" href="#quick-overview" title="Permalink to this headline">¶</a></h3>
<div class="highlight-python"><div class="highlight"><pre><span class="kn">from</span> <span class="nn">kombu</span> <span class="kn">import</span> <span class="n">BrokerConnection</span><span class="p">,</span> <span class="n">Exchange</span><span class="p">,</span> <span class="n">Queue</span>
<span class="n">media_exchange</span> <span class="o">=</span> <span class="n">Exchange</span><span class="p">(</span><span class="s">"media"</span><span class="p">,</span> <span class="s">"direct"</span><span class="p">,</span> <span class="n">durable</span><span class="o">=</span><span class="bp">True</span><span class="p">)</span>
<span class="n">video_queue</span> <span class="o">=</span> <span class="n">Queue</span><span class="p">(</span><span class="s">"video"</span><span class="p">,</span> <span class="n">exchange</span><span class="o">=</span><span class="n">media_exchange</span><span class="p">,</span> <span class="n">routing_key</span><span class="o">=</span><span class="s">"video"</span><span class="p">)</span>
<span class="c"># connections</span>
<span class="k">with</span> <span class="n">BrokerConnection</span><span class="p">(</span><span class="s">"amqp://guest:guest@localhost//"</span><span class="p">)</span> <span class="k">as</span> <span class="n">conn</span><span class="p">:</span>
<span class="c"># produce</span>
<span class="k">with</span> <span class="n">conn</span><span class="o">.</span><span class="n">Producer</span><span class="p">(</span><span class="n">exchange</span><span class="o">=</span><span class="n">media_exchange</span><span class="p">,</span>
<span class="n">serializer</span><span class="o">=</span><span class="s">"json"</span><span class="p">)</span> <span class="k">as</span> <span class="n">producer</span><span class="p">:</span>
<span class="n">producer</span><span class="o">.</span><span class="n">publish</span><span class="p">({</span><span class="s">"name"</span><span class="p">:</span> <span class="s">"/tmp/lolcat1.avi"</span><span class="p">,</span> <span class="s">"size"</span><span class="p">:</span> <span class="mi">1301013</span><span class="p">})</span>
<span class="c"># consume</span>
<span class="k">with</span> <span class="n">conn</span><span class="o">.</span><span class="n">Consumer</span><span class="p">(</span><span class="n">video_queue</span><span class="p">,</span> <span class="n">callbacks</span><span class="o">=</span><span class="p">[</span><span class="n">process_media</span><span class="p">])</span> <span class="k">as</span> <span class="n">consumer</span><span class="p">:</span>
<span class="c"># Process messages and handle events on all channels</span>
<span class="k">while</span> <span class="bp">True</span><span class="p">:</span>
<span class="n">connection</span><span class="o">.</span><span class="n">drain_events</span><span class="p">()</span>
<span class="c"># Consume from several queues on the same channel:</span>
<span class="n">video_queue</span> <span class="o">=</span> <span class="n">Queue</span><span class="p">(</span><span class="s">"video"</span><span class="p">,</span> <span class="n">exchange</span><span class="o">=</span><span class="n">media_exchange</span><span class="p">,</span> <span class="n">key</span><span class="o">=</span><span class="s">"video"</span><span class="p">)</span>
<span class="n">image_queue</span> <span class="o">=</span> <span class="n">Queue</span><span class="p">(</span><span class="s">"image"</span><span class="p">,</span> <span class="n">exchange</span><span class="o">=</span><span class="n">media_exchange</span><span class="p">,</span> <span class="n">key</span><span class="o">=</span><span class="s">"image"</span><span class="p">)</span>
<span class="k">with</span> <span class="n">connection</span><span class="o">.</span><span class="n">Consumer</span><span class="p">([</span><span class="n">video_queue</span><span class="p">,</span> <span class="n">image_queue</span><span class="p">],</span>
<span class="n">callbacks</span><span class="o">=</span><span class="p">[</span><span class="n">process_media</span><span class="p">])</span> <span class="k">as</span> <span class="n">consumer</span><span class="p">:</span>
<span class="k">while</span> <span class="bp">True</span><span class="p">:</span>
<span class="n">connection</span><span class="o">.</span><span class="n">drain_events</span><span class="p">()</span>
</pre></div>
</div>
<p>Or handle channels menually:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="k">with</span> <span class="n">connection</span><span class="o">.</span><span class="n">channel</span><span class="p">()</span> <span class="k">as</span> <span class="n">channel</span><span class="p">:</span>
<span class="n">producer</span> <span class="o">=</span> <span class="n">Producer</span><span class="p">(</span><span class="n">channel</span><span class="p">,</span> <span class="o">...</span><span class="p">)</span>
<span class="n">consumer</span> <span class="o">=</span> <span class="n">Producer</span><span class="p">(</span><span class="n">channel</span><span class="p">)</span>
</pre></div>
</div>
<p>All objects can be used outside of with statements too,
just remember to close the objects after use:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="kn">from</span> <span class="nn">kombu</span> <span class="kn">import</span> <span class="n">BrokerConnection</span><span class="p">,</span> <span class="n">Consumer</span><span class="p">,</span> <span class="n">Producer</span>
<span class="n">connection</span> <span class="o">=</span> <span class="n">BrokerConnection</span><span class="p">()</span>
<span class="c"># ...</span>
<span class="n">connection</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>
<span class="n">consumer</span> <span class="o">=</span> <span class="n">Consumer</span><span class="p">(</span><span class="n">channel_or_connection</span><span class="p">,</span> <span class="o">...</span><span class="p">)</span>
<span class="n">consumer</span><span class="o">.</span><span class="n">register_callback</span><span class="p">(</span><span class="n">my_callback</span><span class="p">)</span>
<span class="n">consumer</span><span class="o">.</span><span class="n">consume</span><span class="p">()</span>
<span class="c"># ....</span>
<span class="n">consumer</span><span class="o">.</span><span class="n">cancel</span><span class="p">()</span>
<span class="n">producer</span> <span class="o">=</span> <span class="n">Producer</span><span class="p">(</span><span class="n">channel_or_connection</span><span class="p">,</span> <span class="o">...</span><span class="p">)</span>
<span class="c"># ....</span>
<span class="n">producer</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>
</pre></div>
</div>
<p><cite>Exchange</cite> and <cite>Queue</cite> are simply declarations that can be pickled
and used in configuaration files etc.</p>
<p>They also support operations, but to do so they need to be bound
to a channel:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">exchange</span> <span class="o">=</span> <span class="n">Exchange</span><span class="p">(</span><span class="s">"tasks"</span><span class="p">,</span> <span class="s">"direct"</span><span class="p">)</span>
<span class="gp">>>> </span><span class="n">connection</span> <span class="o">=</span> <span class="n">BrokerConnection</span><span class="p">()</span>
<span class="gp">>>> </span><span class="n">channel</span> <span class="o">=</span> <span class="n">connection</span><span class="o">.</span><span class="n">channel</span><span class="p">()</span>
<span class="gp">>>> </span><span class="n">bound_exchange</span> <span class="o">=</span> <span class="n">exchange</span><span class="p">(</span><span class="n">channel</span><span class="p">)</span>
<span class="gp">>>> </span><span class="n">bound_exchange</span><span class="o">.</span><span class="n">delete</span><span class="p">()</span>
<span class="go"># the original exchange is not affected, and stays unbound.</span>
<span class="gp">>>> </span><span class="n">exchange</span><span class="o">.</span><span class="n">delete</span><span class="p">()</span>
<span class="go">raise NotBoundError: Can't call delete on Exchange not bound to</span>
<span class="go"> a channel.</span>
</pre></div>
</div>
</div>
</div>
<div class="section" id="installation">
<h2>Installation<a class="headerlink" href="#installation" title="Permalink to this headline">¶</a></h2>
<p>You can install <cite>Kombu</cite> either via the Python Package Index (PyPI)
or from source.</p>
<p>To install using <cite>pip</cite>,:</p>
<div class="highlight-python"><pre>$ pip install kombu</pre>
</div>
<p>To install using <cite>easy_install</cite>,:</p>
<div class="highlight-python"><pre>$ easy_install kombu</pre>
</div>
<p>If you have downloaded a source tarball you can install it
by doing the following,:</p>
<div class="highlight-python"><pre>$ python setup.py build
# python setup.py install # as root</pre>
</div>
</div>
<div class="section" id="terminology">
<h2>Terminology<a class="headerlink" href="#terminology" title="Permalink to this headline">¶</a></h2>
<p>There are some concepts you should be familiar with before starting:</p>
<blockquote>
<div><ul>
<li><p class="first">Producers</p>
<blockquote>
<div><p>Producers sends messages to an exchange.</p>
</div></blockquote>
</li>
<li><p class="first">Exchanges</p>
<blockquote>
<div><p>Messages are sent to exchanges. Exchanges are named and can be
configured to use one of several routing algorithms. The exchange
routes the messages to consumers by matching the routing key in the
message with the routing key the consumer provides when binding to
the exchange.</p>
</div></blockquote>
</li>
<li><p class="first">Consumers</p>
<blockquote>
<div><p>Consumers declares a queue, binds it to a exchange and receives
messages from it.</p>
</div></blockquote>
</li>
<li><p class="first">Queues</p>
<blockquote>
<div><p>Queues receive messages sent to exchanges. The queues are declared
by consumers.</p>
</div></blockquote>
</li>
<li><p class="first">Routing keys</p>
<blockquote>
<div><p>Every message has a routing key. The interpretation of the routing
key depends on the exchange type. There are four default exchange
types defined by the AMQP standard, and vendors can define custom
types (so see your vendors manual for details).</p>
<p>These are the default exchange types defined by AMQP/0.8:</p>
<blockquote>
<div><ul>
<li><p class="first">Direct exchange</p>
<blockquote>
<div><p>Matches if the routing key property of the message and
the <cite>routing_key</cite> attribute of the consumer are identical.</p>
</div></blockquote>
</li>
<li><p class="first">Fan-out exchange</p>
<blockquote>
<div><p>Always matches, even if the binding does not have a routing
key.</p>
</div></blockquote>
</li>
<li><p class="first">Topic exchange</p>
<blockquote>
<div><p>Matches the routing key property of the message by a primitive
pattern matching scheme. The message routing key then consists
of words separated by dots (<cite>”.”</cite>, like domain names), and
two special characters are available; star (<cite>“*”</cite>) and hash
(<cite>“#”</cite>). The star matches any word, and the hash matches
zero or more words. For example <cite>“*.stock.#”</cite> matches the
routing keys <cite>“usd.stock”</cite> and <cite>“eur.stock.db”</cite> but not
<cite>“stock.nasdaq”</cite>.</p>
</div></blockquote>
</li>
</ul>
</div></blockquote>
</div></blockquote>
</li>
</ul>
</div></blockquote>
</div>
<div class="section" id="getting-help">
<h2>Getting Help<a class="headerlink" href="#getting-help" title="Permalink to this headline">¶</a></h2>
<div class="section" id="mailing-list">
<h3>Mailing list<a class="headerlink" href="#mailing-list" title="Permalink to this headline">¶</a></h3>
<p>Join the <a class="reference external" href="http://groups.google.com/group/carrot-users/">carrot-users</a> mailing list.</p>
</div>
</div>
<div class="section" id="bug-tracker">
<h2>Bug tracker<a class="headerlink" href="#bug-tracker" title="Permalink to this headline">¶</a></h2>
<p>If you have any suggestions, bug reports or annoyances please report them
to our issue tracker at <a class="reference external" href="http://github.com/ask/kombu/issues/">http://github.com/ask/kombu/issues/</a></p>
</div>
<div class="section" id="contributing">
<h2>Contributing<a class="headerlink" href="#contributing" title="Permalink to this headline">¶</a></h2>
<p>Development of <cite>Kombu</cite> happens at Github: <a class="reference external" href="http://github.com/ask/kombu">http://github.com/ask/kombu</a></p>
<p>You are highly encouraged to participate in the development. If you don’t
like Github (for some reason) you’re welcome to send regular patches.</p>
</div>
<div class="section" id="license">
<h2>License<a class="headerlink" href="#license" title="Permalink to this headline">¶</a></h2>
<p>This software is licensed under the <cite>New BSD License</cite>. See the <cite>LICENSE</cite>
file in the top distribution directory for the full license text.</p>
</div>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper"><p class="logo"><a href="index.html">
<img class="logo" width="128" height="128" src="http://cloud.github.com/downloads/ask/kombu/kombusmall.jpg" alt="Logo"/>
</a></p>
<h3><a href="index.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">kombu - AMQP Messaging Framework for Python</a><ul>
<li><a class="reference internal" href="#synopsis">Synopsis</a></li>
<li><a class="reference internal" href="#features">Features</a></li>
<li><a class="reference internal" href="#transport-comparison">Transport Comparison</a><ul>
<li><a class="reference internal" href="#documentation">Documentation</a></li>
<li><a class="reference internal" href="#quick-overview">Quick overview</a></li>
</ul>
</li>
<li><a class="reference internal" href="#installation">Installation</a></li>
<li><a class="reference internal" href="#terminology">Terminology</a></li>
<li><a class="reference internal" href="#getting-help">Getting Help</a><ul>
<li><a class="reference internal" href="#mailing-list">Mailing list</a></li>
</ul>
</li>
<li><a class="reference internal" href="#bug-tracker">Bug tracker</a></li>
<li><a class="reference internal" href="#contributing">Contributing</a></li>
<li><a class="reference internal" href="#license">License</a></li>
</ul>
</li>
</ul>
<h4>Previous topic</h4>
<p class="topless"><a href="index.html"
title="previous chapter">Kombu Documentation</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="userguide/index.html"
title="next chapter">User Guide</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="_sources/introduction.txt"
rel="nofollow">Show Source</a></li>
</ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<input type="text" name="q" size="18" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="userguide/index.html" title="User Guide"
>next</a> |</li>
<li class="right" >
<a href="index.html" title="Kombu Documentation"
>previous</a> |</li>
<li><a href="index.html">Kombu v1.4.0 documentation</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright 2009-2011, Ask Solem.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.0.7.
</div>
</body>
</html>
|