This repository has been archived by the owner on Dec 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rasberry_run.py
36 lines (32 loc) · 1.5 KB
/
rasberry_run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/python
#
#
# =++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# ____ _ __ ____ __ _ ____
# / __ ) (_) / /_ / __/ ____ _____ ___ _____ / /_ (_) ____ / __/ ____
# / __ | / / / __/ / /_ / __ \ / ___/ / _ \ / ___/ / __/ / / / __ \ / /_ / __ \
# / /_/ / / / / /_ / __/ / /_/ / / / / __/ (__ ) / /_ / / / / / / / __/ / /_/ /
# /_____/ /_/ \__/ /_/ \____/ /_/ \___/ /____/ \__/ /_/ /_/ /_/ /_/ \____/
#
# =++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#
# Suraj Singh Bisht
# surajsinghbisht054@gmail.com
#
#
#
# This Script Is A Part Of RC-AIA Framework.
# Created For Educational And Practise purpose Only.
# Please Don't Remove Author Initials.
#
#
__author__ = "Suraj Singh Bisht"
__description__ = "Self Driving Phase One"
__version__ = "Beta"
__date__ = "OCT, 2018"
__email__ = "surajsinghbisht054@gmail.com"
# import module
from src import client_stream
# Client Side Functionality Trigger
if __name__ == '__main__':
client_stream.main()