comparison trafficintelligence/base.py @ 1028:cc5cb04b04b0

major update using the trafficintelligence package name and install through pip
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 15 Jun 2018 11:19:10 -0400
parents python/base.py@15e244d2a1b5
children
comparison
equal deleted inserted replaced
1027:6129296848d3 1028:cc5cb04b04b0
1 '''Module for few base classes to avoid issues of circular import'''
2
3 class VideoFilenameAddable(object):
4 'Base class with the capability to attach a video filename'
5
6 def setVideoFilename(self, videoFilename):
7 self.videoFilename = videoFilename