diff options
| author | Dana Powers <dana.powers@gmail.com> | 2016-12-19 11:27:23 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-12-19 11:27:23 -0800 |
| commit | 655953fdac787c1a140cc641502983b6676b13c5 (patch) | |
| tree | 7a926445d44f96dfcb2a53d220f49562a9906168 /kafka/__init__.py | |
| parent | f6291e655d556ed7e0eecdad456f4e28b01b8d2b (diff) | |
| download | kafka-python-655953fdac787c1a140cc641502983b6676b13c5.tar.gz | |
Add kafka.serializer interfaces (#912)
Diffstat (limited to 'kafka/__init__.py')
| -rw-r--r-- | kafka/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kafka/__init__.py b/kafka/__init__.py index 0d7d113..6a80418 100644 --- a/kafka/__init__.py +++ b/kafka/__init__.py @@ -26,6 +26,7 @@ from kafka.protocol import ( create_message, create_gzip_message, create_snappy_message) from kafka.partitioner import RoundRobinPartitioner, HashedPartitioner, Murmur2Partitioner from kafka.structs import TopicPartition, OffsetAndMetadata +from kafka.serializer import Serializer, Deserializer # To be deprecated when KafkaProducer interface is released from kafka.client import SimpleClient |
