@@ -2,7 +2,7 @@ Kafka Python client
2
2
------------------------
3
3
4
4
.. image :: https://img.shields.io/badge/kafka-0.10%2C%200.9%2C%200.8.2%2C%200.8.1%2C%200.8-brightgreen.svg
5
- :target: https://kafka-python.readthedocs.org /compatibility.html
5
+ :target: https://kafka-python.readthedocs.io /compatibility.html
6
6
.. image :: https://img.shields.io/pypi/pyversions/kafka-python.svg
7
7
:target: https://pypi.python.org/pypi/kafka-python
8
8
.. image :: https://coveralls.io/repos/dpkp/kafka-python/badge.svg?branch=master&service=github
@@ -26,7 +26,7 @@ check code (perhaps using zookeeper or consul). For older brokers, you can
26
26
achieve something similar by manually assigning different partitions to each
27
27
consumer instance with config management tools like chef, ansible, etc. This
28
28
approach will work fine, though it does not support rebalancing on failures.
29
- See <http ://kafka-python.readthedocs.org /en/master/compatibility.html>
29
+ See <https ://kafka-python.readthedocs.io /en/master/compatibility.html>
30
30
for more details.
31
31
32
32
Please note that the master branch may contain unreleased features. For release
@@ -41,7 +41,7 @@ KafkaConsumer is a high-level message consumer, intended to operate as similarly
41
41
as possible to the official java client. Full support for coordinated
42
42
consumer groups requires use of kafka brokers that support the Group APIs: kafka v0.9+.
43
43
44
- See <http ://kafka-python.readthedocs.org /en/master/apidoc/KafkaConsumer.html>
44
+ See <https ://kafka-python.readthedocs.io /en/master/apidoc/KafkaConsumer.html>
45
45
for API and configuration details.
46
46
47
47
The consumer iterator returns ConsumerRecords, which are simple namedtuples
@@ -76,7 +76,7 @@ KafkaProducer
76
76
77
77
KafkaProducer is a high-level, asynchronous message producer. The class is
78
78
intended to operate as similarly as possible to the official java client.
79
- See <http ://kafka-python.readthedocs.org /en/master/apidoc/KafkaProducer.html>
79
+ See <https ://kafka-python.readthedocs.io /en/master/apidoc/KafkaProducer.html>
80
80
for more details.
81
81
82
82
>>> from kafka import KafkaProducer
@@ -116,7 +116,7 @@ Compression
116
116
kafka-python supports gzip compression/decompression natively. To produce or consume lz4
117
117
compressed messages, you should install python-lz4 (pip install lz4).
118
118
To enable snappy compression/decompression install python-snappy (also requires snappy library).
119
- See <http ://kafka-python.readthedocs.org /en/master/install.html#optional-snappy-install>
119
+ See <https ://kafka-python.readthedocs.io /en/master/install.html#optional-snappy-install>
120
120
for more information.
121
121
122
122
Protocol
@@ -135,4 +135,4 @@ Low-level
135
135
136
136
Legacy support is maintained for low-level consumer and producer classes,
137
137
SimpleConsumer and SimpleProducer. See
138
- <http ://kafka-python.readthedocs.io/en/master/simple.html?highlight=SimpleProducer> for API details.
138
+ <https ://kafka-python.readthedocs.io/en/master/simple.html?highlight=SimpleProducer> for API details.
0 commit comments