From 64347bd9faa0a314c3c49b48df941d3022f9e311 Mon Sep 17 00:00:00 2001 From: Dana Powers Date: Sat, 17 Dec 2016 17:06:46 -0800 Subject: Add kafka.serializer interfaces --- kafka/__init__.py | 1 + 1 file changed, 1 insertion(+) (limited to 'kafka/__init__.py') 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 -- cgit v1.2.1