From 8ed5592d5af2cc52586b9b39833d01382b2cc96b Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Sun, 9 Apr 2017 22:00:24 -0700 Subject: Update RTD links with https / .io --- README.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index 909a054..8462504 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ Kafka Python client ------------------------ .. 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 - :target: https://kafka-python.readthedocs.org/compatibility.html + :target: https://kafka-python.readthedocs.io/compatibility.html .. image:: https://img.shields.io/pypi/pyversions/kafka-python.svg :target: https://pypi.python.org/pypi/kafka-python .. 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 achieve something similar by manually assigning different partitions to each consumer instance with config management tools like chef, ansible, etc. This approach will work fine, though it does not support rebalancing on failures. -See +See for more details. 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 as possible to the official java client. Full support for coordinated consumer groups requires use of kafka brokers that support the Group APIs: kafka v0.9+. -See +See for API and configuration details. The consumer iterator returns ConsumerRecords, which are simple namedtuples @@ -76,7 +76,7 @@ KafkaProducer KafkaProducer is a high-level, asynchronous message producer. The class is intended to operate as similarly as possible to the official java client. -See +See for more details. >>> from kafka import KafkaProducer @@ -116,7 +116,7 @@ Compression kafka-python supports gzip compression/decompression natively. To produce or consume lz4 compressed messages, you should install python-lz4 (pip install lz4). To enable snappy compression/decompression install python-snappy (also requires snappy library). -See +See for more information. Protocol @@ -135,4 +135,4 @@ Low-level Legacy support is maintained for low-level consumer and producer classes, SimpleConsumer and SimpleProducer. See - for API details. + for API details. -- cgit v1.2.1