Metadata-Version: 2.1
Name: utilsuneed
Version: 0.0.3
Summary: A need for many
Home-page: UNKNOWN
Author: Paritosh Sapre
Author-email: paritoshsapre@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

Help on module Utilities:

NAME
    Utilities

FILE
    f:obodobo\projects\utilities_pack\utilsuneed\utilities.py

CLASSES
    COMMS
    LOGGER
    SER_2_SOCK
    Vector3

    class COMMS
     |  Methods defined here:
     |  
     |  CLIENT_CONNECT(self, host, port)
     |  
     |  CLIENT_RECV(self, buffer=3)
     |  
     |  CLIENT_SEND(self, command)
     |  
     |  CLIENT_order_synchronous(self, command)
     |  
     |  SERV_HOST(self, host, port)
     |  
     |  SERV_NEW_CLI(self)
     |  
     |  SERV_RECV(self, buffer=3)
     |  
     |  SERV_SEND(self, data)
     |  
     |  SERV_order_syncronous(self, command)
     |  
     |  recv_buff(sock, count)
     |  
     |  ----------------------------------------------------------------------
     |  Data and other attributes defined here:
     |  
     |  CLIENT = False
     |  
     |  SERVER = False
     |  
     |  client_connection = None
     |  
     |  sock = <socket._socketobject object>

    class LOGGER
     |  Methods defined here:
     |  
     |  __init__(self, filename='LOGS/LOG_<timestamp>.csv')
     |  
     |  log_all(self, parameter_list, attempts=20)
     |      attempts = 0  // For infinite attempts , default attempts = 20

    class SER_2_SOCK
     |  Methods defined here:
     |  
     |  CONNECT(self)
     |  
     |  SETUP(self)
     |  
     |  START_SERVICE(self)
     |  
     |  ser2sock(self, serial_h, socket_h)
     |  
     |  sock2ser(self, serial_h, socket_h)
     |  
     |  ----------------------------------------------------------------------
     |  Data and other attributes defined here:
     |  
     |  COMbaud = 115200
     |  
     |  COMport = 'COM9'
     |  
     |  buffSize = 4096
     |  
     |  host = 'localhost'
     |  
     |  port = 8001
     |  
     |  ser_err = 0
     |  
     |  serial_connect_timeouts = 1
     |  
     |  serverSocket = <socket._socketobject object>
     |  
     |  sock_err = 0
     |  
     |  socket_connect_timeouts = 1

    class Vector3
     |  Methods defined here:
     |  
     |  Dot(self, v)
     |  
     |  __add__(self, v)
     |  
     |  __call__(self, x=0, y=0, z=0, multiprocessing=False)
     |  
     |  __init__(self, x=0, y=0, z=0, multiprocessing=False)
     |  
     |  __mul__(self, n)
     |      n = SCALAR ONLY
     |  
     |  __sub__(self, v)
     |  
     |  copy(self, vec)
     |  
     |  copy_mp(self, obj)
     |  
     |  from_list(self, list)
     |  
     |  list(self)
     |  
     |  vector(self)
     |      return Numpy instance of the vector3 format
     |  
     |  ----------------------------------------------------------------------
     |  Data descriptors defined here:
     |  
     |  x
     |  
     |  y
     |  
     |  z
     |  
     |  ----------------------------------------------------------------------
     |  Data and other attributes defined here:
     |  
     |  multiprocessing = False
     |  
     |  x_MP = None
     |  
     |  y_MP = None
     |  
     |  z_MP = None

FUNCTIONS
    decode_to_json(command)

    encode_to_json(command)

    printE(name='', message='')




