strym


Namestrym JSON
Version 0.4.22 PyPI version JSON
download
home_pagehttps://github.com/jmscslgroup/strym
SummaryA real time CAN data logging and visualization tool to work with USB-CAN Interface.
upload_time2023-01-19 16:23:06
maintainer
docs_urlNone
authorRahul Bhadani
requires_python
license
keywords candata can autonomous vehicle acc adaptive cruise control usb panda traffic transportation visualization
VCS
bugtrack_url
requirements pandas setuptools setuptools_scm importlib-resources importlib_metadata ipykernel numpy matplotlib cantools libusb1 pyserial seaborn ipython bitstring gmplot gmaps python-dotenv bokeh selenium webdriver_manager vin_parser tensorflow ffmpeg-python plotly kaleido urllib3 yolk3k scikit-learn scipy
Travis-CI
coveralls test coverage No coveralls.
            <img src="https://raw.githubusercontent.com/jmscslgroup/strym/master/strym.png" alt="Strym Logo" align="center"/>


# Strym
[![Build Status](https://travis-ci.com/jmscslgroup/strym.svg?branch=master)](https://travis-ci.com/jmscslgroup/strym)
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/jmscslgroup/strym/graphs/commit-activity)
[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)
[![made-with-sphinx-doc](https://img.shields.io/badge/Made%20with-Sphinx-1f425f.svg)](https://www.sphinx-doc.org/)
[![PyPI version shields.io](https://img.shields.io/pypi/v/strym.svg)](https://pypi.python.org/pypi/strym/)
[![PyPI license](https://img.shields.io/pypi/l/strym.svg)](https://pypi.python.org/pypi/strym/)
[![Downloads](https://pepy.tech/badge/strym)](https://pepy.tech/project/strym)


## Citation
Please cite our work as follows if you have used Strym:

    Bhadani, Rahul, Matt Bunting, Matthew Nice, Ngoc Minh Tran, Safwan Elmadani, Dan Work, and Jonathan Sprinkle.
    Strym: A python package for real-time can data logging, analysis and visualization to work with usb-can interface."
    In 2022 2nd Workshop on Data-Driven and Intelligent Cyber-Physical Systems for Smart Cities Workshop (DI-CPS), pp. 14-23. IEEE, 2022.


```
@inproceedings{bhadani2022strym,
  title={Strym: A python package for real-time can data logging, analysis and visualization to work with usb-can interface},
  author={Bhadani, Rahul and Bunting, Matt and Nice, Matthew and Tran, Ngoc Minh and Elmadani, Safwan and Work, Dan and Sprinkle, Jonathan},
  booktitle={2022 2nd Workshop on Data-Driven and Intelligent Cyber-Physical Systems for Smart Cities Workshop (DI-CPS)},
  pages={14--23},
  year={2022},
  organization={IEEE}
}
```


__A python package for real-time CAN data logging, analysis and visualization to work with USB-CAN Interface.__

__Strym__ is a python package that provides APIs to interface with COMMA.AI panda for logging CAN data, analysis and visualization in real-time from supported modern vehicles such Toyota RAV4 and Honda Pilot. There are two kinds of functionality that __Strym__ provides: 

1. Real-time visualization of CAN data through comma.ai Panda and Giraffe connector.
2. Offline analysis and visualization of CAN Data from a CSV Formatted file.

## Quick Installation
```{bash}
conda create -n strym python=3.7.5
conda activate strym
pip install -r https://github.com/jmscslgroup/strym/releases/download/0.4.3/requirements_strym.txt
pip install strym

```

## Philosophy behind Strym

Strym data is capable of handling timeseries data obtained from Comma.ai Panda and Giraffe Connector. 
Most functions and methods in `strym` expects timeseries data of following format

|   | Time               | Message |
|---|--------------------|---------|
| 1 | 1582056042.5040324 | 2.0     |
| 2 | 1582056043.5040324 | 2.1     |
| 3 | 1582056044.5040324 | 2.12    |
| 4 | 1582056045.5040324 | 1.98    |
| 5 | 1582056046.5040324 | 1.6     |

Here, data should be of type Pandas.DataFrame with two columns: Time and Message. 

However, scope of strym is not limited to timeseries data obtained from comma.ai Panda. Any timeseries data of above format is capable of harnessing methods available in `strym`.

## Quick Start for CAN Data Analysis and Visualization

You can use __Strym__ for quick visualization by importing `strymread`:
```python
import strym
from strym import strymread
from strym import ranalyze
import matplotlib.pyplot as plt
import pandas as pd
from pylab import rcParams
import strym.DBC_Read_Tools as dbc
import numpy as np
plt.rcParams["figure.figsize"] = (16,8)
rcParams.update({'font.size': 40})
dbcfile = '/home/ivory/VersionControl/Jmscslgroup/strym/examples/newToyotacode.dbc'
r =strymread(csvfile="/home/ivory/CyverseData/JmscslgroupData/PandaData/2020_02_18/2020-02-18-13-00-42-209119__CAN_Messages.csv", dbcfile=dbcfile)
```

Checkout documentation at https://jmscslgroup.github.io/strym/getting_started.html for more in-depth tutorials.

## Software Requirements
- Ubuntu 18.04 (not tested on any other version of Ubuntu, but might work)
- Python 3.x ( I recommend using python 3.7.5 so as not to get caught in dependency hell as develop is being done using python 3.7.5, and recen pip changes are not dependency-friendly). 

### Note about installation on RASPBERRY PI for CAN Data Logging
If you are going to install the package on RASPBERRY PI, I highly recommend installing Python 3.7 from the source as there is no Py3.7 release for Raspberry PI.
You will also need to install pre-compiled binaries for NumPy otherwise you may encounter huge inconvenience while building NumPy wheels for Raspberry PI.


## Hardware Requirements for CAN Logging
- comma.ai CAN-USB __Panda__ board.
- comma.ai Giraffee Connector
- A modern vehicle with CAN Bus available such as Toyota RAV4, Toyota CHR, etc. 

## Installation Instructions

[![Install Instruction](https://img.youtube.com/vi/w2p1uYmHBPA/0.jpg)](https://www.youtube.com/watch?v=w2p1uYmHBPA&t=5s)

### Install Python

Install Python 3, either through anaconda or using the Ubuntu package manager. Alternatively, you can also build Python 3.7.5 from source as explained below:

```bash
sudo apt-get update -y
sudo apt-get install build-essential tk-dev libncurses5-dev libncursesw5-dev libreadline6-dev libdb5.3-dev libgdbm-dev libsqlite3-dev libssl-dev libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev libffi-dev -y

wget https://www.python.org/ftp/python/3.7.5/Python-3.7.5.tar.xz
tar xf Python-3.7.5.tar.xz
cd Python-3.7.5
./configure
make -j 4
sudo make altinstall
```

I recommend using python's virtual environment for python package installation. For the sake of following instructions, let's assume that you are using the `virtualenv`  package to create a python virtual environment. 

```bash
sudo apt install virtualenv
```
First, create a directory where your virtual environment folder will reside.

```bash
mkdir ~/VirtualEnv
```
Now, we will create a python virtual environment using python3.7. Let's name the virtual environment *stream*.

```bash
cd ~/VirtualEnv
virtualenv --python=python3.7.5 strym
```

Activate the virtual environment by typing:

```bash
source ~/VirtualEnv/stream/bin/activate
```

Alternatively, you can use Anaconda to create a virtual evinronment and activate it:

```bash
conda create -n strym python=3.7.5
conda activate strym
```

### Install strym

`pip install strym`

This will install the strym package in your `stream` virtual environment.

Now you are ready to use __Strym__.

## Usage for Real-Time Visualization of CAN messages using Strym

Plug your Comma AI Panda device using Giraffe Connector to your CAR's OBD port for data logging and streaming. Insert one end of the USB to Panda Device and another end to your laptop.

In python, you will be required to create an object of type `Strym`:


See `strym_impl.py` for one such usage example in the [example folder](https://github.com/jmscslgroup/strym/blob/master/examples), however, I am provided details of an example below:


Create a new file. I will use the gedit to create a new file. You will be required to pass a path of the CAN Database DBC file to `strym` while instantiating its object. Once you have a `strym` object, you can call its `isoviz()` function. `isoviz()` function takes two arguments: i) the message type that you want to visualize, e.g. SPEED ii) attribute number to plot specific signal of the desired message type. `isoviz()` function will simultaneously capture CAN message in a CSV file and also plot the desired message's signal. To terminate, press CTRL-C. Upon pressing CTRL-C, a SIGINT signal handler will be called that will terminate the logging of CAN messages and also save a matplotlib figure of the desired message's signal in pdf and pickle format.

```bash
gedit viz_example.py
```

```python
from strym import strym
import cantools
import sys, math, time
import signal

db = './newToyotacode.dbc'

Viz = strym(dbcfile = db)

message_type_to_visualize = 'SPEED'
message_attribute_number_to_visualize = 1

visualize = False
options = {"log": "info" }
Viz.isolog(visualize, message_type_to_visualize, message_attribute_number_to_visualize,  **options)

signal.signal(signal.SIGINT, Viz.kill)

print('Datafile saved is {}'.format(Viz.logfile))


```

You will need a DBC file to parse can messages. Download an example DBC file [here](https://github.com/jmscslgroup/strym/blob/master/examples/newToyotacode.dbc)

To run the above program:

```bash
source ~/VirtualEnv/stream/bin/activate
python viz_example.py`
```

If you are done, press CTRL-C.

## Issues
If you run into any issues, please use the issue feature of GitHub to log your issues. I will try my best to address any issue as soon as
possible.

For an issue related to installation/use on windows, please see following filed issues:

1. [Issue #8: OSError: [WinError 126]](https://github.com/jmscslgroup/strym/issues/8)

## Contributing to this project
If you like to contribute to this project, please fork this repository to your GitHub account, create a new branch for yourself and send a pull request for the merge. After reviewing the changes, we will decide if this is a good place to add your changes.

## Authors and Contributors
- Rahul Bhadani ( rahulbhadani@email.arizona.edu)
- Jonathan Sprinkle (sprinkjm@email.arizona.edu)
- Gustavo Lee (gustavolee@email.arizona.edu)
- Matthew Nice (matthew.nice@vanderbilt.edu)
- George Gunter (gunter.gl@gmail.com)
- Safwan Elmadani (safwanelmadani@email.arizona.edu)

## Licensing

    License: MIT License 
    Copyright 2019-2020 Rahul Bhadani, Jonathan Sprinkle, Arizona Board of Regents
    Initial Date: Nov 12, 2019
    Permission is hereby granted, free of charge, to any person obtaining 
    a copy of this software and associated documentation files 
    (the "Software"), to deal in the Software without restriction, including
    without limitation the rights to use, copy, modify, merge, publish,
    distribute, sublicense, and/or sell copies of the Software, and to 
    permit persons to whom the Software is furnished to do so, subject 
    to the following conditions:

    The above copyright notice and this permission notice shall be 
    included in all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF 
    ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED 
    TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 
    PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT 
    SHALL THE AUTHORS, COPYRIGHT HOLDERS OR ARIZONA BOARD OF REGENTS
    BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 
    AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE 
    OR OTHER DEALINGS IN THE SOFTWARE.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jmscslgroup/strym",
    "name": "strym",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "candata,can,autonomous vehicle,ACC,adaptive cruise control,USB,Panda,Traffic,Transportation,visualization",
    "author": "Rahul Bhadani",
    "author_email": "rahulbhadani@email.arizona.edu",
    "download_url": "",
    "platform": null,
    "description": "<img src=\"https://raw.githubusercontent.com/jmscslgroup/strym/master/strym.png\" alt=\"Strym Logo\" align=\"center\"/>\n\n\n# Strym\n[![Build Status](https://travis-ci.com/jmscslgroup/strym.svg?branch=master)](https://travis-ci.com/jmscslgroup/strym)\n[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/jmscslgroup/strym/graphs/commit-activity)\n[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)\n[![made-with-sphinx-doc](https://img.shields.io/badge/Made%20with-Sphinx-1f425f.svg)](https://www.sphinx-doc.org/)\n[![PyPI version shields.io](https://img.shields.io/pypi/v/strym.svg)](https://pypi.python.org/pypi/strym/)\n[![PyPI license](https://img.shields.io/pypi/l/strym.svg)](https://pypi.python.org/pypi/strym/)\n[![Downloads](https://pepy.tech/badge/strym)](https://pepy.tech/project/strym)\n\n\n## Citation\nPlease cite our work as follows if you have used Strym:\n\n    Bhadani, Rahul, Matt Bunting, Matthew Nice, Ngoc Minh Tran, Safwan Elmadani, Dan Work, and Jonathan Sprinkle.\n    Strym: A python package for real-time can data logging, analysis and visualization to work with usb-can interface.\"\n    In 2022 2nd Workshop on Data-Driven and Intelligent Cyber-Physical Systems for Smart Cities Workshop (DI-CPS), pp. 14-23. IEEE, 2022.\n\n\n```\n@inproceedings{bhadani2022strym,\n  title={Strym: A python package for real-time can data logging, analysis and visualization to work with usb-can interface},\n  author={Bhadani, Rahul and Bunting, Matt and Nice, Matthew and Tran, Ngoc Minh and Elmadani, Safwan and Work, Dan and Sprinkle, Jonathan},\n  booktitle={2022 2nd Workshop on Data-Driven and Intelligent Cyber-Physical Systems for Smart Cities Workshop (DI-CPS)},\n  pages={14--23},\n  year={2022},\n  organization={IEEE}\n}\n```\n\n\n__A python package for real-time CAN data logging, analysis and visualization to work with USB-CAN Interface.__\n\n__Strym__ is a python package that provides APIs to interface with COMMA.AI panda for logging CAN data, analysis and visualization in real-time from supported modern vehicles such Toyota RAV4 and Honda Pilot. There are two kinds of functionality that __Strym__ provides: \n\n1. Real-time visualization of CAN data through comma.ai Panda and Giraffe connector.\n2. Offline analysis and visualization of CAN Data from a CSV Formatted file.\n\n## Quick Installation\n```{bash}\nconda create -n strym python=3.7.5\nconda activate strym\npip install -r https://github.com/jmscslgroup/strym/releases/download/0.4.3/requirements_strym.txt\npip install strym\n\n```\n\n## Philosophy behind Strym\n\nStrym data is capable of handling timeseries data obtained from Comma.ai Panda and Giraffe Connector. \nMost functions and methods in `strym` expects timeseries data of following format\n\n|   | Time               | Message |\n|---|--------------------|---------|\n| 1 | 1582056042.5040324 | 2.0     |\n| 2 | 1582056043.5040324 | 2.1     |\n| 3 | 1582056044.5040324 | 2.12    |\n| 4 | 1582056045.5040324 | 1.98    |\n| 5 | 1582056046.5040324 | 1.6     |\n\nHere, data should be of type Pandas.DataFrame with two columns: Time and Message. \n\nHowever, scope of strym is not limited to timeseries data obtained from comma.ai Panda. Any timeseries data of above format is capable of harnessing methods available in `strym`.\n\n## Quick Start for CAN Data Analysis and Visualization\n\nYou can use __Strym__ for quick visualization by importing `strymread`:\n```python\nimport strym\nfrom strym import strymread\nfrom strym import ranalyze\nimport matplotlib.pyplot as plt\nimport pandas as pd\nfrom pylab import rcParams\nimport strym.DBC_Read_Tools as dbc\nimport numpy as np\nplt.rcParams[\"figure.figsize\"] = (16,8)\nrcParams.update({'font.size': 40})\ndbcfile = '/home/ivory/VersionControl/Jmscslgroup/strym/examples/newToyotacode.dbc'\nr =strymread(csvfile=\"/home/ivory/CyverseData/JmscslgroupData/PandaData/2020_02_18/2020-02-18-13-00-42-209119__CAN_Messages.csv\", dbcfile=dbcfile)\n```\n\nCheckout documentation at https://jmscslgroup.github.io/strym/getting_started.html for more in-depth tutorials.\n\n## Software Requirements\n- Ubuntu 18.04 (not tested on any other version of Ubuntu, but might work)\n- Python 3.x ( I recommend using python 3.7.5 so as not to get caught in dependency hell as develop is being done using python 3.7.5, and recen pip changes are not dependency-friendly). \n\n### Note about installation on RASPBERRY PI for CAN Data Logging\nIf you are going to install the package on RASPBERRY PI, I highly recommend installing Python 3.7 from the source as there is no Py3.7 release for Raspberry PI.\nYou will also need to install pre-compiled binaries for NumPy otherwise you may encounter huge inconvenience while building NumPy wheels for Raspberry PI.\n\n\n## Hardware Requirements for CAN Logging\n- comma.ai CAN-USB __Panda__ board.\n- comma.ai Giraffee Connector\n- A modern vehicle with CAN Bus available such as Toyota RAV4, Toyota CHR, etc. \n\n## Installation Instructions\n\n[![Install Instruction](https://img.youtube.com/vi/w2p1uYmHBPA/0.jpg)](https://www.youtube.com/watch?v=w2p1uYmHBPA&t=5s)\n\n### Install Python\n\nInstall Python 3, either through anaconda or using the Ubuntu package manager. Alternatively, you can also build Python 3.7.5 from source as explained below:\n\n```bash\nsudo apt-get update -y\nsudo apt-get install build-essential tk-dev libncurses5-dev libncursesw5-dev libreadline6-dev libdb5.3-dev libgdbm-dev libsqlite3-dev libssl-dev libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev libffi-dev -y\n\nwget https://www.python.org/ftp/python/3.7.5/Python-3.7.5.tar.xz\ntar xf Python-3.7.5.tar.xz\ncd Python-3.7.5\n./configure\nmake -j 4\nsudo make altinstall\n```\n\nI recommend using python's virtual environment for python package installation. For the sake of following instructions, let's assume that you are using the `virtualenv`  package to create a python virtual environment. \n\n```bash\nsudo apt install virtualenv\n```\nFirst, create a directory where your virtual environment folder will reside.\n\n```bash\nmkdir ~/VirtualEnv\n```\nNow, we will create a python virtual environment using python3.7. Let's name the virtual environment *stream*.\n\n```bash\ncd ~/VirtualEnv\nvirtualenv --python=python3.7.5 strym\n```\n\nActivate the virtual environment by typing:\n\n```bash\nsource ~/VirtualEnv/stream/bin/activate\n```\n\nAlternatively, you can use Anaconda to create a virtual evinronment and activate it:\n\n```bash\nconda create -n strym python=3.7.5\nconda activate strym\n```\n\n### Install strym\n\n`pip install strym`\n\nThis will install the strym package in your `stream` virtual environment.\n\nNow you are ready to use __Strym__.\n\n## Usage for Real-Time Visualization of CAN messages using Strym\n\nPlug your Comma AI Panda device using Giraffe Connector to your CAR's OBD port for data logging and streaming. Insert one end of the USB to Panda Device and another end to your laptop.\n\nIn python, you will be required to create an object of type `Strym`:\n\n\nSee `strym_impl.py` for one such usage example in the [example folder](https://github.com/jmscslgroup/strym/blob/master/examples), however, I am provided details of an example below:\n\n\nCreate a new file. I will use the gedit to create a new file. You will be required to pass a path of the CAN Database DBC file to `strym` while instantiating its object. Once you have a `strym` object, you can call its `isoviz()` function. `isoviz()` function takes two arguments: i) the message type that you want to visualize, e.g. SPEED ii) attribute number to plot specific signal of the desired message type. `isoviz()` function will simultaneously capture CAN message in a CSV file and also plot the desired message's signal. To terminate, press CTRL-C. Upon pressing CTRL-C, a SIGINT signal handler will be called that will terminate the logging of CAN messages and also save a matplotlib figure of the desired message's signal in pdf and pickle format.\n\n```bash\ngedit viz_example.py\n```\n\n```python\nfrom strym import strym\nimport cantools\nimport sys, math, time\nimport signal\n\ndb = './newToyotacode.dbc'\n\nViz = strym(dbcfile = db)\n\nmessage_type_to_visualize = 'SPEED'\nmessage_attribute_number_to_visualize = 1\n\nvisualize = False\noptions = {\"log\": \"info\" }\nViz.isolog(visualize, message_type_to_visualize, message_attribute_number_to_visualize,  **options)\n\nsignal.signal(signal.SIGINT, Viz.kill)\n\nprint('Datafile saved is {}'.format(Viz.logfile))\n\n\n```\n\nYou will need a DBC file to parse can messages. Download an example DBC file [here](https://github.com/jmscslgroup/strym/blob/master/examples/newToyotacode.dbc)\n\nTo run the above program:\n\n```bash\nsource ~/VirtualEnv/stream/bin/activate\npython viz_example.py`\n```\n\nIf you are done, press CTRL-C.\n\n## Issues\nIf you run into any issues, please use the issue feature of GitHub to log your issues. I will try my best to address any issue as soon as\npossible.\n\nFor an issue related to installation/use on windows, please see following filed issues:\n\n1. [Issue #8: OSError: [WinError 126]](https://github.com/jmscslgroup/strym/issues/8)\n\n## Contributing to this project\nIf you like to contribute to this project, please fork this repository to your GitHub account, create a new branch for yourself and send a pull request for the merge. After reviewing the changes, we will decide if this is a good place to add your changes.\n\n## Authors and Contributors\n- Rahul Bhadani ( rahulbhadani@email.arizona.edu)\n- Jonathan Sprinkle (sprinkjm@email.arizona.edu)\n- Gustavo Lee (gustavolee@email.arizona.edu)\n- Matthew Nice (matthew.nice@vanderbilt.edu)\n- George Gunter (gunter.gl@gmail.com)\n- Safwan Elmadani (safwanelmadani@email.arizona.edu)\n\n## Licensing\n\n    License: MIT License \n    Copyright 2019-2020 Rahul Bhadani, Jonathan Sprinkle, Arizona Board of Regents\n    Initial Date: Nov 12, 2019\n    Permission is hereby granted, free of charge, to any person obtaining \n    a copy of this software and associated documentation files \n    (the \"Software\"), to deal in the Software without restriction, including\n    without limitation the rights to use, copy, modify, merge, publish,\n    distribute, sublicense, and/or sell copies of the Software, and to \n    permit persons to whom the Software is furnished to do so, subject \n    to the following conditions:\n\n    The above copyright notice and this permission notice shall be \n    included in all copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF \n    ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED \n    TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A \n    PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT \n    SHALL THE AUTHORS, COPYRIGHT HOLDERS OR ARIZONA BOARD OF REGENTS\n    BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN \n    AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, \n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE \n    OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A real time CAN data logging and visualization tool to work with USB-CAN Interface.",
    "version": "0.4.22",
    "project_urls": {
        "Homepage": "https://github.com/jmscslgroup/strym"
    },
    "split_keywords": [
        "candata",
        "can",
        "autonomous vehicle",
        "acc",
        "adaptive cruise control",
        "usb",
        "panda",
        "traffic",
        "transportation",
        "visualization"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f029a21cbd71f56351ce3e23e8068869e5feed59be8593e3f3dc0a2e17780e90",
                "md5": "eb2f1155013a2dae0d95ecec1f84048d",
                "sha256": "a2b5ec72daebf1c79d87dd8a86fec913fc56907132c773ad0dca0d139dbc7ee3"
            },
            "downloads": -1,
            "filename": "strym-0.4.22-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "eb2f1155013a2dae0d95ecec1f84048d",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 124637,
            "upload_time": "2023-01-19T16:23:06",
            "upload_time_iso_8601": "2023-01-19T16:23:06.457725Z",
            "url": "https://files.pythonhosted.org/packages/f0/29/a21cbd71f56351ce3e23e8068869e5feed59be8593e3f3dc0a2e17780e90/strym-0.4.22-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-19 16:23:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jmscslgroup",
    "github_project": "strym",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "pandas",
            "specs": []
        },
        {
            "name": "setuptools",
            "specs": []
        },
        {
            "name": "setuptools_scm",
            "specs": []
        },
        {
            "name": "importlib-resources",
            "specs": []
        },
        {
            "name": "importlib_metadata",
            "specs": []
        },
        {
            "name": "ipykernel",
            "specs": []
        },
        {
            "name": "numpy",
            "specs": [
                [
                    "~=",
                    "1.19.2"
                ]
            ]
        },
        {
            "name": "matplotlib",
            "specs": [
                [
                    ">=",
                    "3.3.1"
                ]
            ]
        },
        {
            "name": "cantools",
            "specs": [
                [
                    ">=",
                    "32.20.1"
                ]
            ]
        },
        {
            "name": "libusb1",
            "specs": [
                [
                    ">=",
                    "1.7.1"
                ]
            ]
        },
        {
            "name": "pyserial",
            "specs": [
                [
                    ">=",
                    "3.4"
                ]
            ]
        },
        {
            "name": "seaborn",
            "specs": [
                [
                    ">=",
                    "0.9.0"
                ]
            ]
        },
        {
            "name": "ipython",
            "specs": []
        },
        {
            "name": "bitstring",
            "specs": [
                [
                    ">=",
                    "3.1.6"
                ]
            ]
        },
        {
            "name": "gmplot",
            "specs": []
        },
        {
            "name": "gmaps",
            "specs": []
        },
        {
            "name": "python-dotenv",
            "specs": []
        },
        {
            "name": "bokeh",
            "specs": []
        },
        {
            "name": "selenium",
            "specs": []
        },
        {
            "name": "webdriver_manager",
            "specs": []
        },
        {
            "name": "vin_parser",
            "specs": []
        },
        {
            "name": "tensorflow",
            "specs": [
                [
                    ">=",
                    "2.2.1"
                ]
            ]
        },
        {
            "name": "ffmpeg-python",
            "specs": []
        },
        {
            "name": "plotly",
            "specs": [
                [
                    "==",
                    "4.12.0"
                ]
            ]
        },
        {
            "name": "kaleido",
            "specs": []
        },
        {
            "name": "urllib3",
            "specs": [
                [
                    "==",
                    "1.24.2"
                ]
            ]
        },
        {
            "name": "yolk3k",
            "specs": []
        },
        {
            "name": "scikit-learn",
            "specs": []
        },
        {
            "name": "scipy",
            "specs": [
                [
                    ">=",
                    "1.6.1"
                ]
            ]
        }
    ],
    "lcname": "strym"
}
        
Elapsed time: 0.31749s