botsense  3.2.0
RoadNarrows Client-Server Proxied Services Framework
__init__.py
Go to the documentation of this file.
1 ################################################################################
2 #
3 # __init__.py
4 #
5 
6 """
7 RoadNarrows BotSense Module.
8 """
9 
10 ## \file
11 ## \package BotSense
12 ##
13 ## $LastChangedDate: 2010-10-05 08:17:38 -0600 (Tue, 05 Oct 2010) $
14 ## $Rev: 615 $
15 ##
16 ## \brief BotSense Client Core
17 ##
18 ## The BotSense python package provides the core client modules plus the
19 ## standard proxied device plug-ins. The client modules communicate with
20 ## the \h_botsense bsProxy server.
21 ##
22 ## \sa
23 ## \htmlonly
24 ## <a href="../pydoc/BotSense.html">PyDoc Generated Documentation</a>
25 ## \endhtmlonly
26 ##
27 ## \author Robin Knight (robin.knight@roadnarrows.com)
28 ##
29 ## \copyright
30 ## \h_copy 2010-2017. RoadNarrows LLC.\n
31 ## http://www.roadnarrows.com\n
32 ## All Rights Reserved
33 ##
34 
35 #
36 # Permission is hereby granted, without written agreement and without
37 # license or royalty fees, to use, copy, modify, and distribute this
38 # software and its documentation for any purpose, provided that
39 # (1) The above copyright notice and the following two paragraphs
40 # appear in all copies of the source code and (2) redistributions
41 # including binaries reproduces these notices in the supporting
42 # documentation. Substantial modifications to this software may be
43 # copyrighted by their authors and need not follow the licensing terms
44 # described here, provided that the new terms are clearly indicated in
45 # all files where they apply.
46 #
47 # IN NO EVENT SHALL THE AUTHOR, ROADNARROWS LLC, OR ANY MEMBERS/EMPLOYEES
48 # OF ROADNARROW LLC OR DISTRIBUTORS OF THIS SOFTWARE BE LIABLE TO ANY
49 # PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
50 # DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION,
51 # EVEN IF THE AUTHORS OR ANY OF THE ABOVE PARTIES HAVE BEEN ADVISED OF
52 # THE POSSIBILITY OF SUCH DAMAGE.
53 #
54 # THE AUTHOR AND ROADNARROWS LLC SPECIFICALLY DISCLAIM ANY WARRANTIES,
55 # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
56 # FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN
57 # "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO
58 # PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
59 #
60 ################################################################################
61 
62 ## All modules in BotSense package.
63 __all__ = [
64  'BotSenseCore',
65  'BotSenseError',
66  'BotSenseTypes',
67  'BotSenseServer',
68  'bsProxyMsgs',
69  'bsI2C',
70  'bsI2CMsgs',
71  'bsNull',
72  'bsNullMsgs',
73  'bsSerial',
74  'bsSerialMsgs',
75 ]