Metadata-Version: 2.1
Name: filipid
Version: 0.0.2
Summary: UMAK utils module
Home-page: UNKNOWN
Author: Gavrilo Andric
Author-email: gavriloandric@gmail.com
License: UNKNOWN
Description: ### Installation
        
        In order to install `filipid` please run `setup.py` script or use PIP.
        
        ```bash
        python setup.py install
        ```
        
        Using PIP
        
        ```bash
        pip install filipid
        ```
        
        ### Example of usage
        
        ```python
        from filipid import port
        
        port = port.Port(port='/dev/cu.usbserial-A901A1JZ')
        tmp = port.send([253, 252, 2, 3, 0], 0.04)
        print(tmp)
        tmp = port.send([253, 251, 2, 0], 0.02)
        print(tmp)
        tmp = port.send([255, 2], 0.02)
        print(tmp)
        ```
        
        ### Utils tool
        
        If you want to list all available ports
        
        ```bash
        >>> list_ports
        
        /dev/cu.SRS-XB10-CSRGAIA-1
        /dev/cu.BoseQuietComfort35-SPPD-1
        /dev/cu.usbserial-A901A1JZ
        
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
