Skip to content

Commit

Permalink
Move all consumers into a sub-module. (#81)
Browse files Browse the repository at this point in the history
* Break consumers out into base consumers and a file for each custom consumer.
  • Loading branch information
willgraf committed Feb 19, 2020
1 parent a6c87ad commit 0fd4b94
Show file tree
Hide file tree
Showing 7 changed files with 1,203 additions and 752 deletions.
41 changes: 41 additions & 0 deletions redis_consumer/consumers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Copyright 2016-2019 The Van Valen Lab at the California Institute of
# Technology (Caltech), with support from the Paul Allen Family Foundation,
# Google, & National Institutes of Health (NIH) under Grant U24CA224309-01.
# All rights reserved.
#
# Licensed under a modified Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.github.com/vanvalenlab/kiosk-redis-consumer/LICENSE
#
# The Work provided may be used for non-commercial academic purposes only.
# For any other use of the Work, including commercial use, please contact:
# vanvalenlab@gmail.com
#
# Neither the name of Caltech nor the names of its contributors may be used
# to endorse or promote products derived from this software without specific
# prior written permission.
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ============================================================================
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

# Base class consumers
from redis_consumer.consumers.base_consumer import Consumer
from redis_consumer.consumers.base_consumer import TensorFlowServingConsumer
from redis_consumer.consumers.base_consumer import ZipFileConsumer

# Custom Workflow consumers
from redis_consumer.consumers.image_consumer import ImageFileConsumer
from redis_consumer.consumers.tracking_consumer import TrackingConsumer

del absolute_import
del division
del print_function

0 comments on commit 0fd4b94

Please sign in to comment.