depthai


Namedepthai JSON
Version 2.28.0.0 PyPI version JSON
download
home_pagehttps://github.com/luxonis/depthai-python
SummaryDepthAI Python Library
upload_time2024-08-19 22:25:34
maintainerNone
docs_urlNone
authorLuxonis
requires_python>=3.7
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # DepthAI Python Library

[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
[![](https://img.shields.io/pypi/v/depthai.svg)](https://pypi.org/project/depthai/)
[![Python Wheel CI](https://github.com/luxonis/depthai-python/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/luxonis/depthai-python/actions/workflows/main.yml)

Python bindings for C++ depthai-core library

## Documentation

Documentation is available over at [Luxonis DepthAI API](https://docs.luxonis.com/projects/api/en/latest/)

## Installation

Prebuilt wheels are available in [Luxonis repository](https://artifacts.luxonis.com/artifactory/luxonis-python-snapshot-local/)
Make sure pip is upgraded
```
python3 -m pip install -U pip
python3 -m pip install --extra-index-url https://artifacts.luxonis.com/artifactory/luxonis-python-snapshot-local/ depthai
```
## Building from source

### Dependencies
 - cmake >= 3.4
 - C++14 compiler (clang, gcc, msvc, ...)
 - Python3

Along these, dependencies of depthai-core are also required
See: [depthai-core dependencies](https://github.com/luxonis/depthai-core#dependencies)


### Building

The first time you build, the repository submodules need be initialized:
```
git submodule update --init --recursive

# Tip: You can ask Git to do that automatically:
git config submodule.recurse true
```

Later submodules also need to be updated.

#### Local build with pip
To build and install using pip:
```
python3 -m pip install .
```
Add parameter `-v` to see the output of the building process.

#### Wheel with pip
To build a wheel, execute the following
```
python3 -m pip wheel . -w wheelhouse
```

#### Shared library
To build a shared library from source perform the following:

> ℹ️ To speed up build times, use `cmake --build build --parallel [num CPU cores]` (CMake >= 3.12).
For older versions use: Linux/macOS: `cmake --build build -- -j[num CPU cores]`, MSVC: `cmake --build build -- /MP[num CPU cores]`

```
cmake -H. -Bbuild
cmake --build build
```
To specify custom Python executable to build for, use `cmake -H. -Bbuild -D PYTHON_EXECUTABLE=/full/path/to/python`.

#### Common issues

* Many build fails due to missing dependencies. This also happens when submodules are missing or outdated (`git submodule update --recursive`).
* If libraries and headers are not in standard places, or not on the search paths, CMake reports it cannot find what it needs (e.g. `libusb`). CMake can be hinted at where to look, for exmpale: `CMAKE_LIBRARY_PATH=/opt/local/lib CMAKE_INCLUDE_PATH=/opt/local/include pip install .`
* Some distribution installers may not get the desired library. For example, an install on a RaspberryPi failed, missing `libusb`, as the default installation with APT led to v0.1.3 at the time, whereas the library here required v1.0.


## Running tests

To run the tests build the library with the following options
```
git submodule update --init --recursive
cmake -H. -Bbuild -D DEPTHAI_PYTHON_ENABLE_TESTS=ON -D DEPTHAI_PYTHON_ENABLE_EXAMPLES=ON -D DEPTHAI_PYTHON_TEST_EXAMPLES=ON
cmake --build build
```

Then navigate to `build` folder and run `ctest`
```
cd build
ctest
```

To test a specific example/test with a custom timeout (in seconds) use following:
```
TEST_TIMEOUT=0 ctest -R "01_rgb_preview" --verbose
```
If `TEST_TIMEOUT=0`, the test will run until stopped or it ends.

## Tested platforms

- Windows 10, Windows 11
- Ubuntu 18.04, 20.04, 22.04;
- Raspbian 10;
- macOS 10.14.6, 10.15.4;

### Building documentation

- **Using [Docker](https://docs.docker.com/) (with [Docker Compose](https://docs.docker.com/compose/install/))**

     ```
     cd docs
     sudo docker-compose build
     sudo docker-compose up
     ```

     > ℹ️ You can leave out the `sudo` if you have added your user to the `docker` group (or are using rootless docker).
     Then open [http://localhost:8000](http://localhost:8000).

     This docker container will watch changes in the `docs/source` directory and rebuild the docs automatically

- **Linux**

     First, please install the required [dependencies](#Dependencies)

     Then run the following commands to build the docs website

     ```
     python3 -m pip install -U pip
     python3 -m pip install -r docs/requirements.txt
     cmake -H. -Bbuild -D DEPTHAI_BUILD_DOCS=ON -D DEPTHAI_PYTHON_BUILD_DOCS=ON
     cmake --build build --target sphinx
     python3 -m http.server --bind 0.0.0.0 8000 --directory build/docs/sphinx
     ```

     Then open [http://localhost:8000](http://localhost:8000).

     This will build documentation based on current sources, so if some new changes will be made, run this command
     in a new terminal window to update the website source

     ```
     cmake --build build --target sphinx
     ```

     Then refresh your page - it should load the updated website that was just built

## Troubleshooting

### Relocation link error

Build failure on Ubuntu 18.04 ("relocation ..." link error) with gcc 7.4.0 (default) - [**issue #3**](https://github.com/luxonis/depthai-api/issues/3)
   - the solution was to upgrade gcc to version 8:

         sudo apt install g++-8
         sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 70
         sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 70
### Hunter
Hunter is a CMake-only dependency manager for C/C++ projects.

If you are stuck with error message which mentions external libraries (subdirectory of `.hunter`) like the following:
```
/usr/bin/ld: /home/[user]/.hunter/_Base/062a19a/ccfed35/a84a713/Install/lib/liblzma.a(stream_flags_decoder.c.o): warning: relocation against `lzma_footer_magic' in read-only section `.text'
```

Try erasing the **Hunter** **cache** folder.

Linux/MacOS:
```
rm -r ~/.hunter
```
Windows:
```
del C:/.hunter
```
or
```
del C:/[user]/.hunter
```

### LTO - link time optimization

If following message appears:
```
lto1: internal compiler error: in add_symbol_to_partition_1, at lto/lto-partition.c:152
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-10/README.Bugs> for instructions.
lto-wrapper: fatal error: /usr/bin/c++ returned 1 exit status
compilation terminated.
/usr/bin/ld: error: lto-wrapper failed
collect2: error: ld returned 1 exit status
make[2]: *** [CMakeFiles/depthai.dir/build.make:227: depthai.cpython-38-x86_64-linux-gnu.so] Error 1
make[1]: *** [CMakeFiles/Makefile2:98: CMakeFiles/depthai.dir/all] Error 2
make: *** [Makefile:130: all] Error 2
```

One fix is to update linker: (In case you are on Ubuntu 20.04: `/usr/bin/ld --version`: 2.30)
```
# Add to the end of /etc/apt/sources.list:

echo "deb http://ro.archive.ubuntu.com/ubuntu groovy main" >> /etc/apt/sources.list

# Replace ro with your countries local cache server (check the content of the file to find out which is)
# Not mandatory, but faster

sudo apt update
sudo apt install binutils

# Should upgrade to 2.35.1
# Check version:
/usr/bin/ld --version
# Output should be: GNU ld (GNU Binutils for Ubuntu) 2.35.1
# Revert /etc/apt/sources.list to previous state (comment out line) to prevent updating other packages.
sudo apt update
```

Another option is to use **clang** compiler:
```
sudo apt install clang-10
mkdir build && cd build
CC=clang-10 CXX=clang++-10 cmake ..
cmake --build . --parallel
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/luxonis/depthai-python",
    "name": "depthai",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Luxonis",
    "author_email": "support@luxonis.com",
    "download_url": "https://files.pythonhosted.org/packages/9e/85/030ee10b8786dc4c9004b73017169c3c3632089f14cc0cbfdb33e2f6d25d/depthai-2.28.0.0.tar.gz",
    "platform": null,
    "description": "# DepthAI Python Library\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n[![](https://img.shields.io/pypi/v/depthai.svg)](https://pypi.org/project/depthai/)\n[![Python Wheel CI](https://github.com/luxonis/depthai-python/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/luxonis/depthai-python/actions/workflows/main.yml)\n\nPython bindings for C++ depthai-core library\n\n## Documentation\n\nDocumentation is available over at [Luxonis DepthAI API](https://docs.luxonis.com/projects/api/en/latest/)\n\n## Installation\n\nPrebuilt wheels are available in [Luxonis repository](https://artifacts.luxonis.com/artifactory/luxonis-python-snapshot-local/)\nMake sure pip is upgraded\n```\npython3 -m pip install -U pip\npython3 -m pip install --extra-index-url https://artifacts.luxonis.com/artifactory/luxonis-python-snapshot-local/ depthai\n```\n## Building from source\n\n### Dependencies\n - cmake >= 3.4\n - C++14 compiler (clang, gcc, msvc, ...)\n - Python3\n\nAlong these, dependencies of depthai-core are also required\nSee: [depthai-core dependencies](https://github.com/luxonis/depthai-core#dependencies)\n\n\n### Building\n\nThe first time you build, the repository submodules need be initialized:\n```\ngit submodule update --init --recursive\n\n# Tip: You can ask Git to do that automatically:\ngit config submodule.recurse true\n```\n\nLater submodules also need to be updated.\n\n#### Local build with pip\nTo build and install using pip:\n```\npython3 -m pip install .\n```\nAdd parameter `-v` to see the output of the building process.\n\n#### Wheel with pip\nTo build a wheel, execute the following\n```\npython3 -m pip wheel . -w wheelhouse\n```\n\n#### Shared library\nTo build a shared library from source perform the following:\n\n> \u2139\ufe0f To speed up build times, use `cmake --build build --parallel [num CPU cores]` (CMake >= 3.12).\nFor older versions use: Linux/macOS: `cmake --build build -- -j[num CPU cores]`, MSVC: `cmake --build build -- /MP[num CPU cores]`\n\n```\ncmake -H. -Bbuild\ncmake --build build\n```\nTo specify custom Python executable to build for, use `cmake -H. -Bbuild -D PYTHON_EXECUTABLE=/full/path/to/python`.\n\n#### Common issues\n\n* Many build fails due to missing dependencies. This also happens when submodules are missing or outdated (`git submodule update --recursive`).\n* If libraries and headers are not in standard places, or not on the search paths, CMake reports it cannot find what it needs (e.g. `libusb`). CMake can be hinted at where to look, for exmpale: `CMAKE_LIBRARY_PATH=/opt/local/lib CMAKE_INCLUDE_PATH=/opt/local/include pip install .`\n* Some distribution installers may not get the desired library. For example, an install on a RaspberryPi failed, missing `libusb`, as the default installation with APT led to v0.1.3 at the time, whereas the library here required v1.0.\n\n\n## Running tests\n\nTo run the tests build the library with the following options\n```\ngit submodule update --init --recursive\ncmake -H. -Bbuild -D DEPTHAI_PYTHON_ENABLE_TESTS=ON -D DEPTHAI_PYTHON_ENABLE_EXAMPLES=ON -D DEPTHAI_PYTHON_TEST_EXAMPLES=ON\ncmake --build build\n```\n\nThen navigate to `build` folder and run `ctest`\n```\ncd build\nctest\n```\n\nTo test a specific example/test with a custom timeout (in seconds) use following:\n```\nTEST_TIMEOUT=0 ctest -R \"01_rgb_preview\" --verbose\n```\nIf `TEST_TIMEOUT=0`, the test will run until stopped or it ends.\n\n## Tested platforms\n\n- Windows 10, Windows 11\n- Ubuntu 18.04, 20.04, 22.04;\n- Raspbian 10;\n- macOS 10.14.6, 10.15.4;\n\n### Building documentation\n\n- **Using [Docker](https://docs.docker.com/) (with [Docker Compose](https://docs.docker.com/compose/install/))**\n\n     ```\n     cd docs\n     sudo docker-compose build\n     sudo docker-compose up\n     ```\n\n     > \u2139\ufe0f You can leave out the `sudo` if you have added your user to the `docker` group (or are using rootless docker).\n     Then open [http://localhost:8000](http://localhost:8000).\n\n     This docker container will watch changes in the `docs/source` directory and rebuild the docs automatically\n\n- **Linux**\n\n     First, please install the required [dependencies](#Dependencies)\n\n     Then run the following commands to build the docs website\n\n     ```\n     python3 -m pip install -U pip\n     python3 -m pip install -r docs/requirements.txt\n     cmake -H. -Bbuild -D DEPTHAI_BUILD_DOCS=ON -D DEPTHAI_PYTHON_BUILD_DOCS=ON\n     cmake --build build --target sphinx\n     python3 -m http.server --bind 0.0.0.0 8000 --directory build/docs/sphinx\n     ```\n\n     Then open [http://localhost:8000](http://localhost:8000).\n\n     This will build documentation based on current sources, so if some new changes will be made, run this command\n     in a new terminal window to update the website source\n\n     ```\n     cmake --build build --target sphinx\n     ```\n\n     Then refresh your page - it should load the updated website that was just built\n\n## Troubleshooting\n\n### Relocation link error\n\nBuild failure on Ubuntu 18.04 (\"relocation ...\" link error) with gcc 7.4.0 (default) - [**issue #3**](https://github.com/luxonis/depthai-api/issues/3)\n   - the solution was to upgrade gcc to version 8:\n\n         sudo apt install g++-8\n         sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 70\n         sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 70\n### Hunter\nHunter is a CMake-only dependency manager for C/C++ projects.\n\nIf you are stuck with error message which mentions external libraries (subdirectory of `.hunter`) like the following:\n```\n/usr/bin/ld: /home/[user]/.hunter/_Base/062a19a/ccfed35/a84a713/Install/lib/liblzma.a(stream_flags_decoder.c.o): warning: relocation against `lzma_footer_magic' in read-only section `.text'\n```\n\nTry erasing the **Hunter** **cache** folder.\n\nLinux/MacOS:\n```\nrm -r ~/.hunter\n```\nWindows:\n```\ndel C:/.hunter\n```\nor\n```\ndel C:/[user]/.hunter\n```\n\n### LTO - link time optimization\n\nIf following message appears:\n```\nlto1: internal compiler error: in add_symbol_to_partition_1, at lto/lto-partition.c:152\nPlease submit a full bug report,\nwith preprocessed source if appropriate.\nSee <file:///usr/share/doc/gcc-10/README.Bugs> for instructions.\nlto-wrapper: fatal error: /usr/bin/c++ returned 1 exit status\ncompilation terminated.\n/usr/bin/ld: error: lto-wrapper failed\ncollect2: error: ld returned 1 exit status\nmake[2]: *** [CMakeFiles/depthai.dir/build.make:227: depthai.cpython-38-x86_64-linux-gnu.so] Error 1\nmake[1]: *** [CMakeFiles/Makefile2:98: CMakeFiles/depthai.dir/all] Error 2\nmake: *** [Makefile:130: all] Error 2\n```\n\nOne fix is to update linker: (In case you are on Ubuntu 20.04: `/usr/bin/ld --version`: 2.30)\n```\n# Add to the end of /etc/apt/sources.list:\n\necho \"deb http://ro.archive.ubuntu.com/ubuntu groovy main\" >> /etc/apt/sources.list\n\n# Replace ro with your countries local cache server (check the content of the file to find out which is)\n# Not mandatory, but faster\n\nsudo apt update\nsudo apt install binutils\n\n# Should upgrade to 2.35.1\n# Check version:\n/usr/bin/ld --version\n# Output should be: GNU ld (GNU Binutils for Ubuntu) 2.35.1\n# Revert /etc/apt/sources.list to previous state (comment out line) to prevent updating other packages.\nsudo apt update\n```\n\nAnother option is to use **clang** compiler:\n```\nsudo apt install clang-10\nmkdir build && cd build\nCC=clang-10 CXX=clang++-10 cmake ..\ncmake --build . --parallel\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "DepthAI Python Library",
    "version": "2.28.0.0",
    "project_urls": {
        "Homepage": "https://github.com/luxonis/depthai-python"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4294a71f0472aa9ee225108e5be62539861b1bb92378b9adbc18551dcc95d926",
                "md5": "498ed6644295593306eddbc03416fe0c",
                "sha256": "c912cc5a6582d02a07f59004a475c605ac94cc4efacac2747ea32a16782b7a8b"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "498ed6644295593306eddbc03416fe0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 12701907,
            "upload_time": "2024-08-19T22:23:47",
            "upload_time_iso_8601": "2024-08-19T22:23:47.543359Z",
            "url": "https://files.pythonhosted.org/packages/42/94/a71f0472aa9ee225108e5be62539861b1bb92378b9adbc18551dcc95d926/depthai-2.28.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62d8a09052b1f09261559e6b6f643b27c3c332db745d858d749ab2167eea0d70",
                "md5": "70bcd2fabbc4d0fac002cd64dba9e922",
                "sha256": "00a134ac521f41a8e51005ce912ad195595258cd343bb371cbdf5c8bf35e7bb3"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp310-cp310-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "70bcd2fabbc4d0fac002cd64dba9e922",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 13293479,
            "upload_time": "2024-08-19T22:23:50",
            "upload_time_iso_8601": "2024-08-19T22:23:50.978497Z",
            "url": "https://files.pythonhosted.org/packages/62/d8/a09052b1f09261559e6b6f643b27c3c332db745d858d749ab2167eea0d70/depthai-2.28.0.0-cp310-cp310-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d2557b9133d98d314265e92e705ae84cfd3416c081ca54e09131bfdd0618faa",
                "md5": "284e6d3359ac2c369009871491727d57",
                "sha256": "ff4d59a9bbb39e1673a74e3a7a1b6e0a5df663b2e708da3f04f04b4794dc1c52"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "284e6d3359ac2c369009871491727d57",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 13651316,
            "upload_time": "2024-08-19T22:23:53",
            "upload_time_iso_8601": "2024-08-19T22:23:53.721410Z",
            "url": "https://files.pythonhosted.org/packages/2d/25/57b9133d98d314265e92e705ae84cfd3416c081ca54e09131bfdd0618faa/depthai-2.28.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bc0f92c145afc648f27e2969f7f1dc62279b35c128a7d934b28de4aafcf2a3a",
                "md5": "d4c63b13db4d38282ef118014f54e89d",
                "sha256": "ab6e2ff0e05a2f208c5be35ead3146267bf85f11669341b825c1a1c2ee808373"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d4c63b13db4d38282ef118014f54e89d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 14023525,
            "upload_time": "2024-08-19T22:23:56",
            "upload_time_iso_8601": "2024-08-19T22:23:56.420378Z",
            "url": "https://files.pythonhosted.org/packages/8b/c0/f92c145afc648f27e2969f7f1dc62279b35c128a7d934b28de4aafcf2a3a/depthai-2.28.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c50ae24243c784f3f79540bbe2cca0e6a71b2b6ea6b29babe56553d819501524",
                "md5": "b131e9ad376f1b71bb7122c8cfdcbc74",
                "sha256": "c59c91870cd07101089986a635bf5de18dd777e3ba7963507b7d653073f97c90"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "b131e9ad376f1b71bb7122c8cfdcbc74",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 10788350,
            "upload_time": "2024-08-19T22:24:00",
            "upload_time_iso_8601": "2024-08-19T22:24:00.268769Z",
            "url": "https://files.pythonhosted.org/packages/c5/0a/e24243c784f3f79540bbe2cca0e6a71b2b6ea6b29babe56553d819501524/depthai-2.28.0.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "562690469961a1afcde5ccdd1e0bc58ca58a3e5970d61e48938134dea129daa8",
                "md5": "d21de0fbdaba7484983ff4923779c260",
                "sha256": "e7921ec5ebf4a02994ba7c8cb16849e2c65c6e7663a56ff2c4357f8c67f4db52"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d21de0fbdaba7484983ff4923779c260",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 11128319,
            "upload_time": "2024-08-19T22:24:02",
            "upload_time_iso_8601": "2024-08-19T22:24:02.897932Z",
            "url": "https://files.pythonhosted.org/packages/56/26/90469961a1afcde5ccdd1e0bc58ca58a3e5970d61e48938134dea129daa8/depthai-2.28.0.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b236d2d0eabf83cb25852cef8d97da48d80386a18abd8c077bbe2b3619282027",
                "md5": "ed4212188eb3d4b589885380576bfb0a",
                "sha256": "18ce8aff5a29a9dd2574da5f042676a64a02a5240b86bf5f76825af05c51c116"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp311-cp311-linux_armv6l.linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ed4212188eb3d4b589885380576bfb0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 12737744,
            "upload_time": "2024-08-19T22:24:05",
            "upload_time_iso_8601": "2024-08-19T22:24:05.728136Z",
            "url": "https://files.pythonhosted.org/packages/b2/36/d2d0eabf83cb25852cef8d97da48d80386a18abd8c077bbe2b3619282027/depthai-2.28.0.0-cp311-cp311-linux_armv6l.linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72584268cdf2645b568ad571463c8c574c226d56ee3650bbad20476e61196837",
                "md5": "242c39544864d3186e76f3ac29cf3d1f",
                "sha256": "8afc65b0e2800c37ae1f1ddd38d0716b70dcc77df8393a0bfc9d00e6595563e1"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "242c39544864d3186e76f3ac29cf3d1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 13292920,
            "upload_time": "2024-08-19T22:24:08",
            "upload_time_iso_8601": "2024-08-19T22:24:08.335199Z",
            "url": "https://files.pythonhosted.org/packages/72/58/4268cdf2645b568ad571463c8c574c226d56ee3650bbad20476e61196837/depthai-2.28.0.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1056ea5622f697591e5f22a213ac85c20006883d70156da22205cdfaa2f2e145",
                "md5": "e95695a1e601af0d848864b80718696b",
                "sha256": "8967876a8a42af9b97ba23abf60efad75367b22551a36d0846d553c842ab45e2"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e95695a1e601af0d848864b80718696b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 12701959,
            "upload_time": "2024-08-19T22:24:11",
            "upload_time_iso_8601": "2024-08-19T22:24:11.176642Z",
            "url": "https://files.pythonhosted.org/packages/10/56/ea5622f697591e5f22a213ac85c20006883d70156da22205cdfaa2f2e145/depthai-2.28.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c36b5a9c4f805422e496fec49b83c1582cfc5fa23c089cbc9b0136268f327b47",
                "md5": "c17e6874c6a3bfc80f1f61716c7e48ef",
                "sha256": "551925ad157f396d7de349fdf654a0c02eda434a7a5c78784d5ea7eb729b8419"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c17e6874c6a3bfc80f1f61716c7e48ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 13651316,
            "upload_time": "2024-08-19T22:24:13",
            "upload_time_iso_8601": "2024-08-19T22:24:13.788353Z",
            "url": "https://files.pythonhosted.org/packages/c3/6b/5a9c4f805422e496fec49b83c1582cfc5fa23c089cbc9b0136268f327b47/depthai-2.28.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b8adadb9a442f16c116acc2a9d027ace435f8910e5e65b88c19b603c18ea303",
                "md5": "98013e86011215951e2fcc27fb22a4cd",
                "sha256": "d3510af34f20974ea707dff691946bc37098ad3b61380ed9e1eb72b9f3f204c9"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "98013e86011215951e2fcc27fb22a4cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 14023891,
            "upload_time": "2024-08-19T22:24:16",
            "upload_time_iso_8601": "2024-08-19T22:24:16.351480Z",
            "url": "https://files.pythonhosted.org/packages/1b/8a/dadb9a442f16c116acc2a9d027ace435f8910e5e65b88c19b603c18ea303/depthai-2.28.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efaa7f8e68f38f0aee9f7755f37ff33d8455ed37479dc2f7c04ef1ab37592ed6",
                "md5": "ff205788d71b0bdf1608ae6eb8d39cdd",
                "sha256": "c68992725ac40d3f088c856191a68f604b37f66f11720dd1e09337ceb69d18fd"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "ff205788d71b0bdf1608ae6eb8d39cdd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 10788992,
            "upload_time": "2024-08-19T22:24:19",
            "upload_time_iso_8601": "2024-08-19T22:24:19.297330Z",
            "url": "https://files.pythonhosted.org/packages/ef/aa/7f8e68f38f0aee9f7755f37ff33d8455ed37479dc2f7c04ef1ab37592ed6/depthai-2.28.0.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3048ed2f1d0f002ca1b8c282ad6df908fb05d9536a826f88136f410c0cc05e0d",
                "md5": "ca26130e7a6c52b23dc2a8c7e7448949",
                "sha256": "cc7e961f966da684e876df29444a5eb383911ddc319382be388ee06c29fdce48"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ca26130e7a6c52b23dc2a8c7e7448949",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 11129615,
            "upload_time": "2024-08-19T22:24:22",
            "upload_time_iso_8601": "2024-08-19T22:24:22.276460Z",
            "url": "https://files.pythonhosted.org/packages/30/48/ed2f1d0f002ca1b8c282ad6df908fb05d9536a826f88136f410c0cc05e0d/depthai-2.28.0.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c075177f46d41b070c84562f7f72d291cc28e60aad9067aa3db3237befdf57cb",
                "md5": "232294b5905a025341170a6cb3725a09",
                "sha256": "7674aa5985413f049538ea074901d8d0252ff908d969d8fa41a6b6eed2e8dcb0"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "232294b5905a025341170a6cb3725a09",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 13332009,
            "upload_time": "2024-08-19T22:24:25",
            "upload_time_iso_8601": "2024-08-19T22:24:25.156510Z",
            "url": "https://files.pythonhosted.org/packages/c0/75/177f46d41b070c84562f7f72d291cc28e60aad9067aa3db3237befdf57cb/depthai-2.28.0.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2494798450ffb11b2e2130427b9349bd5965905a22f7af5643d7cdc6f038898f",
                "md5": "6818563cd50084be447a19dfeff744d9",
                "sha256": "edee79d72b3a27deb2ff10d7d9fc9d2aa2e05eec9db3590dc0594177444bffa2"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6818563cd50084be447a19dfeff744d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 12721038,
            "upload_time": "2024-08-19T22:24:28",
            "upload_time_iso_8601": "2024-08-19T22:24:28.301269Z",
            "url": "https://files.pythonhosted.org/packages/24/94/798450ffb11b2e2130427b9349bd5965905a22f7af5643d7cdc6f038898f/depthai-2.28.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b295da4c53d778301852583a02f45b458d116ac796c526430ac6f1b545f777a",
                "md5": "de85c12d69ac1b83eb585e72e882eec8",
                "sha256": "14ebb4d3ab8d44c233559310cf5b0f99b41e3f813c4a2de79a06855fb30d83bc"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "de85c12d69ac1b83eb585e72e882eec8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 13640079,
            "upload_time": "2024-08-19T22:24:30",
            "upload_time_iso_8601": "2024-08-19T22:24:30.888542Z",
            "url": "https://files.pythonhosted.org/packages/6b/29/5da4c53d778301852583a02f45b458d116ac796c526430ac6f1b545f777a/depthai-2.28.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1451cbdea950a77eeba0a70be73888d4d9f50d20a8c465c81f78b54c218b481e",
                "md5": "8e8ea4650b3160407251d1edd0a377f6",
                "sha256": "0facf6602fbcddd32205189346a49f1cb6e818773baebdc5926c932da860eb54"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e8ea4650b3160407251d1edd0a377f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 14013993,
            "upload_time": "2024-08-19T22:24:33",
            "upload_time_iso_8601": "2024-08-19T22:24:33.340037Z",
            "url": "https://files.pythonhosted.org/packages/14/51/cbdea950a77eeba0a70be73888d4d9f50d20a8c465c81f78b54c218b481e/depthai-2.28.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d56cdfa3a29114313dd3ecc1aa48e232d50c7aa5660eb1695403f1541041a13",
                "md5": "58771b268aa64129645fa2637ebe73ed",
                "sha256": "fcfd087bcd09a83914ae9e6d421923c1f4f25341aeee40f23575282b0ebd70e4"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "58771b268aa64129645fa2637ebe73ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 10797794,
            "upload_time": "2024-08-19T22:24:35",
            "upload_time_iso_8601": "2024-08-19T22:24:35.944935Z",
            "url": "https://files.pythonhosted.org/packages/2d/56/cdfa3a29114313dd3ecc1aa48e232d50c7aa5660eb1695403f1541041a13/depthai-2.28.0.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d8de9cbbc372d82da11bab17b62d1dc88799a5693f88a9a4e59aab0083c09a6",
                "md5": "2bfd6b299ac307426bb9b9e6f16f0986",
                "sha256": "5cb22354b2b1ac0225d26ac6276bfdc2acb959a7c96324fb1a045a3787e988af"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2bfd6b299ac307426bb9b9e6f16f0986",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 11140811,
            "upload_time": "2024-08-19T22:24:38",
            "upload_time_iso_8601": "2024-08-19T22:24:38.578789Z",
            "url": "https://files.pythonhosted.org/packages/4d/8d/e9cbbc372d82da11bab17b62d1dc88799a5693f88a9a4e59aab0083c09a6/depthai-2.28.0.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bffbf2599157448c326dcb399e06f791c5a4be7524c109875e18cc27996ef845",
                "md5": "674d762d0b67ffeb0a9e40ae54ca0f58",
                "sha256": "cad79a6665ede5adf911e5ccfdd8c58f197a88c2689b3dff4bb8f8917288b714"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp37-cp37m-linux_armv6l.linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "674d762d0b67ffeb0a9e40ae54ca0f58",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 12363655,
            "upload_time": "2024-08-19T22:24:41",
            "upload_time_iso_8601": "2024-08-19T22:24:41.240447Z",
            "url": "https://files.pythonhosted.org/packages/bf/fb/f2599157448c326dcb399e06f791c5a4be7524c109875e18cc27996ef845/depthai-2.28.0.0-cp37-cp37m-linux_armv6l.linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79572ffd65eb7f06808cfcedbb6e2ed9947ba8385c591cc95118ddbc0c2c0bf9",
                "md5": "8e689a76cd1198863d24bd8bfa1065d9",
                "sha256": "5c4f4b1edf9e149d4793d5d7faea91ad9fbece863897a418fb126065f3531061"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8e689a76cd1198863d24bd8bfa1065d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 13692556,
            "upload_time": "2024-08-19T22:24:43",
            "upload_time_iso_8601": "2024-08-19T22:24:43.847423Z",
            "url": "https://files.pythonhosted.org/packages/79/57/2ffd65eb7f06808cfcedbb6e2ed9947ba8385c591cc95118ddbc0c2c0bf9/depthai-2.28.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6a897a28122e6a292cda8e349950525d29d87b172803f8beb7a66a90eff4f3e",
                "md5": "b2b8a4e1ee2302f43120a28981c43a3f",
                "sha256": "ef7e66421f3b4390edbe3ad72cbd523ef7d29881bab79c89a557537851a96df9"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b2b8a4e1ee2302f43120a28981c43a3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 14046185,
            "upload_time": "2024-08-19T22:24:46",
            "upload_time_iso_8601": "2024-08-19T22:24:46.486423Z",
            "url": "https://files.pythonhosted.org/packages/f6/a8/97a28122e6a292cda8e349950525d29d87b172803f8beb7a66a90eff4f3e/depthai-2.28.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69b184741cc98cd30ff7bb9d7e7a28ee36514788a5c6e7787e579633121bdad2",
                "md5": "6e02d4c15965de51b1e5eeed3e59243f",
                "sha256": "f342fb3c791ef0e4c5db80027290a406cf1add059f9ce68bf06ab1819a9c6b9e"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "6e02d4c15965de51b1e5eeed3e59243f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 10763477,
            "upload_time": "2024-08-19T22:24:49",
            "upload_time_iso_8601": "2024-08-19T22:24:49.429537Z",
            "url": "https://files.pythonhosted.org/packages/69/b1/84741cc98cd30ff7bb9d7e7a28ee36514788a5c6e7787e579633121bdad2/depthai-2.28.0.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3dbcf7b8a59ba4bb8623a46ee4f5c495817050a0abf6ba137dc3cfd4b1cff3f1",
                "md5": "5d347027998452c542dc72862f63ce7b",
                "sha256": "94e4c8c4cda896020a9754558438d0c4977cbdee859428ad5bdf8f3c5ce22b47"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5d347027998452c542dc72862f63ce7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 11059867,
            "upload_time": "2024-08-19T22:24:52",
            "upload_time_iso_8601": "2024-08-19T22:24:52.253473Z",
            "url": "https://files.pythonhosted.org/packages/3d/bc/f7b8a59ba4bb8623a46ee4f5c495817050a0abf6ba137dc3cfd4b1cff3f1/depthai-2.28.0.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "582e2c2bae2b347e9874bf65f9b2cffeccb3f55bdcdeb83f79533f354abb674d",
                "md5": "4cdcecdec93528f40351e9ea29c73dbb",
                "sha256": "8d40e7a3d8be8d18611f472163c119316a9f8504495292bab798e636a06a4854"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4cdcecdec93528f40351e9ea29c73dbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 12702264,
            "upload_time": "2024-08-19T22:24:54",
            "upload_time_iso_8601": "2024-08-19T22:24:54.744218Z",
            "url": "https://files.pythonhosted.org/packages/58/2e/2c2bae2b347e9874bf65f9b2cffeccb3f55bdcdeb83f79533f354abb674d/depthai-2.28.0.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e881f60dbc7d061fce7a39afc94ee01f47d50cdeb90fdf16671db1d92e6be64",
                "md5": "d87d39dba2d3814aaa4e07827fcaa742",
                "sha256": "abea6184c0d3967307824553a0d88759586321e43f018545ab64b0b8135e8a45"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp38-cp38-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d87d39dba2d3814aaa4e07827fcaa742",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 13291898,
            "upload_time": "2024-08-19T22:24:57",
            "upload_time_iso_8601": "2024-08-19T22:24:57.838494Z",
            "url": "https://files.pythonhosted.org/packages/9e/88/1f60dbc7d061fce7a39afc94ee01f47d50cdeb90fdf16671db1d92e6be64/depthai-2.28.0.0-cp38-cp38-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca6b6ae7b33828af2035b70fdfcc16c21c07bb3a2bc51fc524bf5480b738827e",
                "md5": "86cfc6214bf1e46e1bb52dd203f6dcea",
                "sha256": "8c385cd8c2602bb0c4ddc4f8d9134eead42e7f63eecfee9a10736e73f7340f2a"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "86cfc6214bf1e46e1bb52dd203f6dcea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 13649962,
            "upload_time": "2024-08-19T22:25:00",
            "upload_time_iso_8601": "2024-08-19T22:25:00.782257Z",
            "url": "https://files.pythonhosted.org/packages/ca/6b/6ae7b33828af2035b70fdfcc16c21c07bb3a2bc51fc524bf5480b738827e/depthai-2.28.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f81f35f13b7617420b59dd6145cf224e90ed10b5fc3f92457db6c3acf0ab3422",
                "md5": "88c51565f4df2d48a8e617fd239f5941",
                "sha256": "4de4af436b19514e4842932055c041130852cd2e81e89704d729cfbd700a1c9f"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "88c51565f4df2d48a8e617fd239f5941",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 14022078,
            "upload_time": "2024-08-19T22:25:03",
            "upload_time_iso_8601": "2024-08-19T22:25:03.450370Z",
            "url": "https://files.pythonhosted.org/packages/f8/1f/35f13b7617420b59dd6145cf224e90ed10b5fc3f92457db6c3acf0ab3422/depthai-2.28.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23004e91d18f24038ed43633bc252f3229f5ee195b9210739e15cf112715e220",
                "md5": "939a1ffaab863b52eee04a05279121ee",
                "sha256": "1041f6034bece5792c5b864d8d6d2bd626d2d4c68e60ed75de8e04bd92b1d8e8"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "939a1ffaab863b52eee04a05279121ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 10788473,
            "upload_time": "2024-08-19T22:25:06",
            "upload_time_iso_8601": "2024-08-19T22:25:06.681231Z",
            "url": "https://files.pythonhosted.org/packages/23/00/4e91d18f24038ed43633bc252f3229f5ee195b9210739e15cf112715e220/depthai-2.28.0.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0adbe1e195ad1a135fd6cf785940eb1d070ad9f1de27c3ba6684ce835b6e276",
                "md5": "1f014e9179b73283bceec4e8f1f27bd9",
                "sha256": "bb3ecab0ec22d9f4bdf00c0bac9cce09d3574d3c9b396624808c28a0c0a179aa"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1f014e9179b73283bceec4e8f1f27bd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 11128419,
            "upload_time": "2024-08-19T22:25:09",
            "upload_time_iso_8601": "2024-08-19T22:25:09.384819Z",
            "url": "https://files.pythonhosted.org/packages/e0/ad/be1e195ad1a135fd6cf785940eb1d070ad9f1de27c3ba6684ce835b6e276/depthai-2.28.0.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f10dbf6a1ac992846f6eac61563c990c4357595d1b668062e6da521020c2cffd",
                "md5": "b6c897bed796c37f12a11fccee2fd965",
                "sha256": "2145ac923186884f32e411c9c7fbd32973c352fc7f8f422012932010dd976e70"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp39-cp39-linux_armv6l.linux_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b6c897bed796c37f12a11fccee2fd965",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 12758402,
            "upload_time": "2024-08-19T22:25:12",
            "upload_time_iso_8601": "2024-08-19T22:25:12.919609Z",
            "url": "https://files.pythonhosted.org/packages/f1/0d/bf6a1ac992846f6eac61563c990c4357595d1b668062e6da521020c2cffd/depthai-2.28.0.0-cp39-cp39-linux_armv6l.linux_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1f165ca664932019d5fa00a11c890677562c44d4d8fbaa8d576e79d32917b92",
                "md5": "eb4c673601b39853b8a862502cf4ff30",
                "sha256": "f4c3fc94759ad60626883b462d18b2a818798d51a3f9aa7585cb6e53083dd5fb"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "eb4c673601b39853b8a862502cf4ff30",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 12702379,
            "upload_time": "2024-08-19T22:25:15",
            "upload_time_iso_8601": "2024-08-19T22:25:15.808521Z",
            "url": "https://files.pythonhosted.org/packages/c1/f1/65ca664932019d5fa00a11c890677562c44d4d8fbaa8d576e79d32917b92/depthai-2.28.0.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "858feeae8b01aae40ddd452703910ba4df8248e5ba14bb13fda06cb306c8d417",
                "md5": "d587c5c70d7c21afdf437a67a00e56e8",
                "sha256": "dcbe2c1d0b7b9dfa2ea00548b7d8013906507f835023366fe1182d227c6b0912"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp39-cp39-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d587c5c70d7c21afdf437a67a00e56e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 13293822,
            "upload_time": "2024-08-19T22:25:19",
            "upload_time_iso_8601": "2024-08-19T22:25:19.035270Z",
            "url": "https://files.pythonhosted.org/packages/85/8f/eeae8b01aae40ddd452703910ba4df8248e5ba14bb13fda06cb306c8d417/depthai-2.28.0.0-cp39-cp39-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b09cf67f8aff56f11a59ce6a520491faf8a4ca2cd4011fbac953070c2f18d57",
                "md5": "efb7baed1cf9a759f985b835077b4de9",
                "sha256": "0530886985f8e2f9df2d6c5640f46e0f34100d318e11742dfa119bddf62d040f"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "efb7baed1cf9a759f985b835077b4de9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 13652181,
            "upload_time": "2024-08-19T22:25:22",
            "upload_time_iso_8601": "2024-08-19T22:25:22.099770Z",
            "url": "https://files.pythonhosted.org/packages/6b/09/cf67f8aff56f11a59ce6a520491faf8a4ca2cd4011fbac953070c2f18d57/depthai-2.28.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f344639c22ee9975f138332ed92caa63c02b4ffe7bdf3651c1ed78e5563bbcef",
                "md5": "418978a634d757b6e93f1fc4abb6ba83",
                "sha256": "146bfcc7e4b6fd8b4f2137024446a4ce3d1bff3082c5261c78a5687ce25a7b1c"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "418978a634d757b6e93f1fc4abb6ba83",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 14023690,
            "upload_time": "2024-08-19T22:25:25",
            "upload_time_iso_8601": "2024-08-19T22:25:25.060185Z",
            "url": "https://files.pythonhosted.org/packages/f3/44/639c22ee9975f138332ed92caa63c02b4ffe7bdf3651c1ed78e5563bbcef/depthai-2.28.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c133541cc9f32b05ae9179432ccf743335ca38ea34eec3bb4fb7a6f21c8c3213",
                "md5": "51b93dbda7f91d2787a417c03d154c8f",
                "sha256": "2713d844461a8d194838a9d4b8b3373ce05985dd343ade6ed135f2d73a4bf2f7"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "51b93dbda7f91d2787a417c03d154c8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 10788239,
            "upload_time": "2024-08-19T22:25:28",
            "upload_time_iso_8601": "2024-08-19T22:25:28.293386Z",
            "url": "https://files.pythonhosted.org/packages/c1/33/541cc9f32b05ae9179432ccf743335ca38ea34eec3bb4fb7a6f21c8c3213/depthai-2.28.0.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ea1465abc627b1bba7d835d365cc4af22e84509fdee51afd353005bc352be3b",
                "md5": "1909ddcb4a0132ee9a93f7ed8e362c85",
                "sha256": "b894c8168bfc29df378c2eb1d53e4fb1971ea65f27128270c076f8709dd82515"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1909ddcb4a0132ee9a93f7ed8e362c85",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 11133472,
            "upload_time": "2024-08-19T22:25:31",
            "upload_time_iso_8601": "2024-08-19T22:25:31.131433Z",
            "url": "https://files.pythonhosted.org/packages/8e/a1/465abc627b1bba7d835d365cc4af22e84509fdee51afd353005bc352be3b/depthai-2.28.0.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e85030ee10b8786dc4c9004b73017169c3c3632089f14cc0cbfdb33e2f6d25d",
                "md5": "2ead22a4c978d8fb5331c826d3c6cef3",
                "sha256": "0f068130a102fbcbeef6cc23d253b0e78e8697454a1aad22eaa294afc527c4c3"
            },
            "downloads": -1,
            "filename": "depthai-2.28.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "2ead22a4c978d8fb5331c826d3c6cef3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 450988,
            "upload_time": "2024-08-19T22:25:34",
            "upload_time_iso_8601": "2024-08-19T22:25:34.006156Z",
            "url": "https://files.pythonhosted.org/packages/9e/85/030ee10b8786dc4c9004b73017169c3c3632089f14cc0cbfdb33e2f6d25d/depthai-2.28.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-19 22:25:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "luxonis",
    "github_project": "depthai-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "depthai"
}
        
Elapsed time: 1.04017s