You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and the [Confluent Platform](https://www.confluent.io/product/compare/). The client is:
7
7
@@ -23,8 +23,8 @@ See the [API documentation](http://docs.confluent.io/current/clients/confluent-k
23
23
Usage
24
24
=====
25
25
26
-
Below are some examples of typical usage. For more examples, including [how to configure](examples/confluent_cloud.py)the python client for use with
27
-
[Confluent Cloud](https://www.confluent.io/confluent-cloud/), see the [examples](examples) directory.
26
+
Below are some examples of typical usage. For more examples, see the [examples](examples) directory or the [confluentinc/examples](https://github.com/confluentinc/examples/tree/master/clients/cloud/python) github repo for a [Confluent Cloud](https://www.confluent.io/confluent-cloud/) example.
27
+
28
28
29
29
**Producer**
30
30
@@ -205,21 +205,22 @@ The `Producer`, `Consumer` and `AdminClient` are all thread safe.
205
205
Install
206
206
=======
207
207
208
+
**Install self-contained binary wheels**
209
+
210
+
$ pip install confluent-kafka
211
+
208
212
**NOTE:** The pre-built Linux wheels do NOT contain SASL Kerberos/GSSAPI support.
209
213
If you need SASL Kerberos/GSSAPI support you must install librdkafka and
210
214
its dependencies using the repositories below and then build
211
215
confluent-kafka using the command in the "Install from
212
216
source from PyPi" section below.
213
217
214
-
**Install self-contained binary wheels for OSX and Linux from PyPi**
215
-
216
-
$ pip install confluent-kafka
217
-
218
218
**Install AvroProducer and AvroConsumer**
219
219
220
220
$ pip install "confluent-kafka[avro]"
221
221
222
-
**Install from source from PyPi***(requires librdkafka + dependencies to be installed separately)*:
222
+
**Install from source from PyPi**
223
+
*(requires librdkafka + dependencies to be installed separately)*:
**NOTE**: Requires `tox` (please install with `pip install tox`), several supported versions of Python on your path, and `librdkafka`[installed](tools/bootstrap-librdkafka.sh) into `tmp-build`.
292
-
293
-
294
-
**Integration tests**
295
-
296
-
See [tests/README.md](tests/README.md) for instructions on how to run integration tests.
297
-
298
-
299
-
300
-
Generate Documentation
301
-
======================
302
-
Install sphinx and sphinx_rtd_theme packages:
303
-
304
-
$ pip install sphinx sphinx_rtd_theme
305
-
306
-
Build HTML docs:
307
-
308
-
$ make docs
309
-
310
-
or:
311
-
312
-
$ python setup.py build_sphinx
272
+
Developer Notes
273
+
===============
313
274
314
-
Documentation will be generated in `docs/_build/`.
275
+
Instructions on building and testing confluent-kafka-python can be found [here](DEVELOPER.md).
0 commit comments