# 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/ec/4b/c47cbd761e29f0a075fa1aa75db33de3ca5f2be3fd1ee84634f4c9ffd3eb/depthai-2.29.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.29.0.0",
"project_urls": {
"Homepage": "https://github.com/luxonis/depthai-python"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "3b8125bd3823c8f1c9cc37052f4a77243ad6ece7fed35aaf8ab34b21c971b21f",
"md5": "ccec8cabb67a81397744289e5224c88b",
"sha256": "5011980cbdc6463d12174cdcf740d76c23093ebfef138ea0e1238d75c87debdf"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ccec8cabb67a81397744289e5224c88b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 12740781,
"upload_time": "2024-11-24T12:53:37",
"upload_time_iso_8601": "2024-11-24T12:53:37.519822Z",
"url": "https://files.pythonhosted.org/packages/3b/81/25bd3823c8f1c9cc37052f4a77243ad6ece7fed35aaf8ab34b21c971b21f/depthai-2.29.0.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea87497b65e7b395d7e286ca73f08d44f8e7f37d0b1d22f894a1ca1eeea3f8b9",
"md5": "326f574b1e986b5473f3111f61fd5e3a",
"sha256": "ca011a00cd48ffe01ae817407f8b110f2eaea3b4f73f77f6abde0b1a9903ec5d"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp310-cp310-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "326f574b1e986b5473f3111f61fd5e3a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 13330957,
"upload_time": "2024-11-24T12:53:42",
"upload_time_iso_8601": "2024-11-24T12:53:42.054605Z",
"url": "https://files.pythonhosted.org/packages/ea/87/497b65e7b395d7e286ca73f08d44f8e7f37d0b1d22f894a1ca1eeea3f8b9/depthai-2.29.0.0-cp310-cp310-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "375c03dfea2533b70b0b856f086f28cd2a875d9b448d574f0da1a9628bd8491f",
"md5": "3fffe5355d1028d45c495d516254c329",
"sha256": "9676c08a8da729e51068b1bd6e9ea194bd52ecfe682548782f8ffdf2c62e2fa2"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3fffe5355d1028d45c495d516254c329",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 13692483,
"upload_time": "2024-11-24T12:53:45",
"upload_time_iso_8601": "2024-11-24T12:53:45.241427Z",
"url": "https://files.pythonhosted.org/packages/37/5c/03dfea2533b70b0b856f086f28cd2a875d9b448d574f0da1a9628bd8491f/depthai-2.29.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "422de202ccc48211ecbc25d796de3606f55832795644e142b65bc988c9d3f532",
"md5": "ef2a317f6318bc0080c2cafed15ce2ab",
"sha256": "7a11ee302fd2a2d3dea5ffd72d094f757bd32c38a654331c14ad9d8b92143d91"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ef2a317f6318bc0080c2cafed15ce2ab",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 14064584,
"upload_time": "2024-11-24T12:53:48",
"upload_time_iso_8601": "2024-11-24T12:53:48.048557Z",
"url": "https://files.pythonhosted.org/packages/42/2d/e202ccc48211ecbc25d796de3606f55832795644e142b65bc988c9d3f532/depthai-2.29.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b3d78c2f3e42d7e96b972edbd2a62e8172f6c6e24e8987071b8c302eb33701e",
"md5": "cdefc954ee34d3a0322f22854862d3cb",
"sha256": "3e68f69dd960124e04f67db299ece6937156883ab2dc528244f460e8011ab6d4"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "cdefc954ee34d3a0322f22854862d3cb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 10842513,
"upload_time": "2024-11-24T12:53:51",
"upload_time_iso_8601": "2024-11-24T12:53:51.320452Z",
"url": "https://files.pythonhosted.org/packages/3b/3d/78c2f3e42d7e96b972edbd2a62e8172f6c6e24e8987071b8c302eb33701e/depthai-2.29.0.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a54edd284366e18d28887e82769e17caa37ced4300b9dd555099c39dbfc8d77f",
"md5": "628d001bfa9c87ce5882fcff89a9f23b",
"sha256": "c0ac29cd8e7d929b68e388d021caac419aca3d25b95597c0b650569560ce4212"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "628d001bfa9c87ce5882fcff89a9f23b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 11180051,
"upload_time": "2024-11-24T12:53:53",
"upload_time_iso_8601": "2024-11-24T12:53:53.782806Z",
"url": "https://files.pythonhosted.org/packages/a5/4e/dd284366e18d28887e82769e17caa37ced4300b9dd555099c39dbfc8d77f/depthai-2.29.0.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "33e6fd1f4cba067e5d66804a8335b11036a69aab32be1d109e1a96724ea78c0e",
"md5": "6868d0ae2e7594eff3e8d29843072a6d",
"sha256": "392e893b5900cf3f673a27849d4c3b93fa5b2c5a645ceddd142c08ee03906989"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp311-cp311-linux_armv6l.linux_armv7l.whl",
"has_sig": false,
"md5_digest": "6868d0ae2e7594eff3e8d29843072a6d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 12780513,
"upload_time": "2024-11-24T12:53:57",
"upload_time_iso_8601": "2024-11-24T12:53:57.056696Z",
"url": "https://files.pythonhosted.org/packages/33/e6/fd1f4cba067e5d66804a8335b11036a69aab32be1d109e1a96724ea78c0e/depthai-2.29.0.0-cp311-cp311-linux_armv6l.linux_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "68b782e58a7f5f4a632446e92436bb8c44ae484510f0c6472918854e74d3ec27",
"md5": "778811ba8c4d8f413b6aaed489c2c035",
"sha256": "a88ea31d5cf8b4f39536e1acaf71c2a88ee0112c5b93f092b9d8a195111704cf"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "778811ba8c4d8f413b6aaed489c2c035",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 13333929,
"upload_time": "2024-11-24T12:54:00",
"upload_time_iso_8601": "2024-11-24T12:54:00.183850Z",
"url": "https://files.pythonhosted.org/packages/68/b7/82e58a7f5f4a632446e92436bb8c44ae484510f0c6472918854e74d3ec27/depthai-2.29.0.0-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce7f65f42fdcaf39a735d83d4bc4194ff8719c21a674dc6ee62146ff92f92cda",
"md5": "881cc78e180965bd747d2caa1866f8c9",
"sha256": "25ab4334f4822bbe6ade876dee847b047aafec6536dd82450e8c949f415a80c1"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "881cc78e180965bd747d2caa1866f8c9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 12741977,
"upload_time": "2024-11-24T12:54:03",
"upload_time_iso_8601": "2024-11-24T12:54:03.237310Z",
"url": "https://files.pythonhosted.org/packages/ce/7f/65f42fdcaf39a735d83d4bc4194ff8719c21a674dc6ee62146ff92f92cda/depthai-2.29.0.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "873d57e88cce7fae5738d16a9907609788af213deb1a85376a330629563b7791",
"md5": "9d76b78994ac58aec8e20bf34073f406",
"sha256": "aa58b2964e88475654c4d3f4af3d67e4859763bff8e9aa401fe710dc4c183f07"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9d76b78994ac58aec8e20bf34073f406",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 13693128,
"upload_time": "2024-11-24T12:54:06",
"upload_time_iso_8601": "2024-11-24T12:54:06.292832Z",
"url": "https://files.pythonhosted.org/packages/87/3d/57e88cce7fae5738d16a9907609788af213deb1a85376a330629563b7791/depthai-2.29.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "159053a5f84efffe7602127434d2f6fb0f6be86f7365dc00051169baa97f6f20",
"md5": "a9a06140cbae6d457e922fc3fb1eafe0",
"sha256": "118e32658d09c6e2b41582eabb90e2054e430ac24691ab9deb1b8a99bb5c8352"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a9a06140cbae6d457e922fc3fb1eafe0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 14065026,
"upload_time": "2024-11-24T12:54:08",
"upload_time_iso_8601": "2024-11-24T12:54:08.811247Z",
"url": "https://files.pythonhosted.org/packages/15/90/53a5f84efffe7602127434d2f6fb0f6be86f7365dc00051169baa97f6f20/depthai-2.29.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4264fbe6b3ea001ea32c84d6217ee896c3954ce07eea78616eb953bceae5fe97",
"md5": "1cb620810e89e7341c6c1acf573935fe",
"sha256": "91ee23c6d182fbc948028db269ea02e01a32f42ff1e63893c6d7201a88e4d600"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "1cb620810e89e7341c6c1acf573935fe",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 10843576,
"upload_time": "2024-11-24T12:54:11",
"upload_time_iso_8601": "2024-11-24T12:54:11.173671Z",
"url": "https://files.pythonhosted.org/packages/42/64/fbe6b3ea001ea32c84d6217ee896c3954ce07eea78616eb953bceae5fe97/depthai-2.29.0.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f3afc8d5e735573c5836ffe7024387452fcc4e45616ae0844570ed103424f92",
"md5": "159c94c211e529b161d9b99667badec2",
"sha256": "63ff1bcc2ca5a29363a15e811fb854552b861b6421a949ced83cec3518b780f1"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "159c94c211e529b161d9b99667badec2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 11181504,
"upload_time": "2024-11-24T12:54:14",
"upload_time_iso_8601": "2024-11-24T12:54:14.161852Z",
"url": "https://files.pythonhosted.org/packages/6f/3a/fc8d5e735573c5836ffe7024387452fcc4e45616ae0844570ed103424f92/depthai-2.29.0.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f0cce27a42210380e30050d516f36bf0f2c2cb9c846b35c65541ced9c4149d1",
"md5": "54b194ed8fda2435ce30c4baaa62c4d1",
"sha256": "59a65eb282bbe25bced0afbadcf4c59d7ffc25a350aa0fd8f9ad4c4380f425ca"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "54b194ed8fda2435ce30c4baaa62c4d1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 13371538,
"upload_time": "2024-11-24T12:54:17",
"upload_time_iso_8601": "2024-11-24T12:54:17.266012Z",
"url": "https://files.pythonhosted.org/packages/5f/0c/ce27a42210380e30050d516f36bf0f2c2cb9c846b35c65541ced9c4149d1/depthai-2.29.0.0-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9a4b208a5422acd52168e1d7577437af79807fc3da434334c495ff77aebe80e9",
"md5": "f7fd314946d2a885c8fa6558370e54d7",
"sha256": "50f9dd28c9774e96467e806630097faa64028604ad41f3498dbcdba40c610eaf"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f7fd314946d2a885c8fa6558370e54d7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 12756878,
"upload_time": "2024-11-24T12:54:20",
"upload_time_iso_8601": "2024-11-24T12:54:20.322416Z",
"url": "https://files.pythonhosted.org/packages/9a/4b/208a5422acd52168e1d7577437af79807fc3da434334c495ff77aebe80e9/depthai-2.29.0.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2e1b8aaa4eff292ef8ea2a4411d6ea48897a2b38db3b72152a1e4c326b7f98e",
"md5": "e2ce4a3050dc8039b91b58b5a12174e3",
"sha256": "b931590ca4cda77d287e106a8300e59312d5248bd18bc0b2c865f7c964aba06b"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e2ce4a3050dc8039b91b58b5a12174e3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 13679842,
"upload_time": "2024-11-24T12:54:23",
"upload_time_iso_8601": "2024-11-24T12:54:23.450206Z",
"url": "https://files.pythonhosted.org/packages/f2/e1/b8aaa4eff292ef8ea2a4411d6ea48897a2b38db3b72152a1e4c326b7f98e/depthai-2.29.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "20453d19db5aacf3a820cdf06df20b229f2c6052c7e060b8108fd84d37e72546",
"md5": "7b74002db935d4512095798cfd64d9e1",
"sha256": "5cfa1ff9aa44005284c98432da70d6134f32979d3a619f921b37b03eb703e0fb"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7b74002db935d4512095798cfd64d9e1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 14057141,
"upload_time": "2024-11-24T12:54:26",
"upload_time_iso_8601": "2024-11-24T12:54:26.053554Z",
"url": "https://files.pythonhosted.org/packages/20/45/3d19db5aacf3a820cdf06df20b229f2c6052c7e060b8108fd84d37e72546/depthai-2.29.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a4fe79a9319e97b5d89db085ea90c364137c6903daa1cff6d0553f8978e41838",
"md5": "ded8ee825a1a2aff36bbce381ee1cd19",
"sha256": "daa4a00ba5f4f4a6a05f52d0e246fa0258eed9f1b4427415a746841cb4f2d5a4"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "ded8ee825a1a2aff36bbce381ee1cd19",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 10849451,
"upload_time": "2024-11-24T12:54:29",
"upload_time_iso_8601": "2024-11-24T12:54:29.213934Z",
"url": "https://files.pythonhosted.org/packages/a4/fe/79a9319e97b5d89db085ea90c364137c6903daa1cff6d0553f8978e41838/depthai-2.29.0.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3415d3a7de75e37d331568096eb80c97b81e6352e1f1d2779711a1490cafc680",
"md5": "c9c102776a67eb563a940fd62f27a4c2",
"sha256": "1bbfc78a9799b3444e95f50181fb824b08a6a0b2442bfa8679c906c1f5f6daca"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "c9c102776a67eb563a940fd62f27a4c2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 11193348,
"upload_time": "2024-11-24T12:54:31",
"upload_time_iso_8601": "2024-11-24T12:54:31.939058Z",
"url": "https://files.pythonhosted.org/packages/34/15/d3a7de75e37d331568096eb80c97b81e6352e1f1d2779711a1490cafc680/depthai-2.29.0.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a90fcd11c2847ef952bfb226cb5e73b3af97f7022f5700762030c5ac30c118be",
"md5": "7cbdcf94c5154914af58f2d2ed22b414",
"sha256": "67e68584a0950cae2320a941b76099a6781f39b28e563e1dc15c6a4276279fef"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "7cbdcf94c5154914af58f2d2ed22b414",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 13371800,
"upload_time": "2024-11-24T12:54:34",
"upload_time_iso_8601": "2024-11-24T12:54:34.317469Z",
"url": "https://files.pythonhosted.org/packages/a9/0f/cd11c2847ef952bfb226cb5e73b3af97f7022f5700762030c5ac30c118be/depthai-2.29.0.0-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "efffc901d674ebd88fd77c7c535a8f692706ff92c3d838bd625e6b1ed49dbf10",
"md5": "233442e65445e9da18b619767e518e45",
"sha256": "662f88e4d182814774ff258b09074872f2daa37e656049c3c0cb11b0c8940b1f"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "233442e65445e9da18b619767e518e45",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 12757066,
"upload_time": "2024-11-24T12:54:37",
"upload_time_iso_8601": "2024-11-24T12:54:37.064264Z",
"url": "https://files.pythonhosted.org/packages/ef/ff/c901d674ebd88fd77c7c535a8f692706ff92c3d838bd625e6b1ed49dbf10/depthai-2.29.0.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8aaa1e0466086ba074309cd92ad19c66b4a0482d5cc3f6748d1c289a94d1c03e",
"md5": "432c2f2314ec505d7b3de4d004ac9f32",
"sha256": "6d84ec1334e158e151aec1f6ce285f718daf87f563fe7d3673cff19e1fc92f81"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "432c2f2314ec505d7b3de4d004ac9f32",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 13679155,
"upload_time": "2024-11-24T12:54:40",
"upload_time_iso_8601": "2024-11-24T12:54:40.600238Z",
"url": "https://files.pythonhosted.org/packages/8a/aa/1e0466086ba074309cd92ad19c66b4a0482d5cc3f6748d1c289a94d1c03e/depthai-2.29.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3899fdacd5c133d4e0fa99f21083aff1b1efbc690162bbf0d5480d0a5a15c806",
"md5": "a3315de6187003462cc8361e12aa1cc7",
"sha256": "f0db1678b6780e7acac7388b439939f793ac048ea2f054397e9fb0172754ce61"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a3315de6187003462cc8361e12aa1cc7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 14057261,
"upload_time": "2024-11-24T12:54:43",
"upload_time_iso_8601": "2024-11-24T12:54:43.043323Z",
"url": "https://files.pythonhosted.org/packages/38/99/fdacd5c133d4e0fa99f21083aff1b1efbc690162bbf0d5480d0a5a15c806/depthai-2.29.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "abb3315f758bce98841ed100e2d4aca27e7b5041cacca5ca1246b12ed98ac448",
"md5": "bd46fb7d5b9de6face0cb1dd776a8880",
"sha256": "1fd1dbd127463bdfd922ab429d1238993eec6c35ad0535c2a74c5ee44e626e90"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bd46fb7d5b9de6face0cb1dd776a8880",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 13698162,
"upload_time": "2024-11-24T12:54:51",
"upload_time_iso_8601": "2024-11-24T12:54:51.713134Z",
"url": "https://files.pythonhosted.org/packages/ab/b3/315f758bce98841ed100e2d4aca27e7b5041cacca5ca1246b12ed98ac448/depthai-2.29.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bb7bcbeb46a97ecb06c5f3bbb3716a6f87702e9702ef0da82075ab17b8bbe86a",
"md5": "4641960f0fd7be35110ebf368aaf58db",
"sha256": "21f5594fe7920f4173f98c642236b6178cef0fff94e60cc3b0774d7a3f1ed52a"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4641960f0fd7be35110ebf368aaf58db",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 14088185,
"upload_time": "2024-11-24T12:54:54",
"upload_time_iso_8601": "2024-11-24T12:54:54.169060Z",
"url": "https://files.pythonhosted.org/packages/bb/7b/cbeb46a97ecb06c5f3bbb3716a6f87702e9702ef0da82075ab17b8bbe86a/depthai-2.29.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d1369aae3906874d7726e5f3be93762cb0c85c78378ed1d098ccf0b15911065",
"md5": "3e5c300b4ec04d92b5876cb9a49d7e8c",
"sha256": "142bff802c214151e12eb1ff3b82407027a8e705358bc66db4d32556ab5fb653"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "3e5c300b4ec04d92b5876cb9a49d7e8c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 10849528,
"upload_time": "2024-11-24T12:54:45",
"upload_time_iso_8601": "2024-11-24T12:54:45.556195Z",
"url": "https://files.pythonhosted.org/packages/8d/13/69aae3906874d7726e5f3be93762cb0c85c78378ed1d098ccf0b15911065/depthai-2.29.0.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a3ea40abb7b95b7e9631595ef047ee70b849b1f9029b17c4e4c4ecd7fbe55921",
"md5": "4939ee68213e2a6f620bb6292cd529b6",
"sha256": "6927d70a303f41ffc072c4ef4c791da68d6333bc82e9515be9187adbb8528bad"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "4939ee68213e2a6f620bb6292cd529b6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 11193483,
"upload_time": "2024-11-24T12:54:48",
"upload_time_iso_8601": "2024-11-24T12:54:48.663927Z",
"url": "https://files.pythonhosted.org/packages/a3/ea/40abb7b95b7e9631595ef047ee70b849b1f9029b17c4e4c4ecd7fbe55921/depthai-2.29.0.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0fb8ea43f1dc73f98c833ec1c494a4ab1bdefa0c01d632eaae31afd16c31dcdd",
"md5": "bb257c0053ed9db693c97b5f67079e90",
"sha256": "df10972f6401740133ebdc588d2ccd9aae5365c74888178638f458a0fd3ffa89"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp37-cp37m-linux_armv6l.linux_armv7l.whl",
"has_sig": false,
"md5_digest": "bb257c0053ed9db693c97b5f67079e90",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 12396071,
"upload_time": "2024-11-24T12:54:56",
"upload_time_iso_8601": "2024-11-24T12:54:56.925226Z",
"url": "https://files.pythonhosted.org/packages/0f/b8/ea43f1dc73f98c833ec1c494a4ab1bdefa0c01d632eaae31afd16c31dcdd/depthai-2.29.0.0-cp37-cp37m-linux_armv6l.linux_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "14c2d79e870964cdd5c1d030d037df9c93f6846ff73ca3e8b82f7a8ea986dca1",
"md5": "67864aab79924899d5f058d45c842a72",
"sha256": "18914e10cde60b59431c041b155be7ace3131025f67be8feee143adec5b76d18"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "67864aab79924899d5f058d45c842a72",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 13731692,
"upload_time": "2024-11-24T12:55:00",
"upload_time_iso_8601": "2024-11-24T12:55:00.039494Z",
"url": "https://files.pythonhosted.org/packages/14/c2/d79e870964cdd5c1d030d037df9c93f6846ff73ca3e8b82f7a8ea986dca1/depthai-2.29.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a3c9bafabbb54984667df86d154cd170ea10c0732ebfdc7b696c75af9589d60c",
"md5": "deb2047cb280a84793690323a28e94fb",
"sha256": "925e9bd850a8b7c50233734059655cd96e2e67892aeb8e525a5f01ff03abf35b"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "deb2047cb280a84793690323a28e94fb",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 14089950,
"upload_time": "2024-11-24T12:55:02",
"upload_time_iso_8601": "2024-11-24T12:55:02.604353Z",
"url": "https://files.pythonhosted.org/packages/a3/c9/bafabbb54984667df86d154cd170ea10c0732ebfdc7b696c75af9589d60c/depthai-2.29.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6a0b14a56db166632349aa94b7843eda6e62c9db0b1632e921603c8adac70a6c",
"md5": "2b040738ca495abe1ac6609e9786c410",
"sha256": "b658a9e53ecc20e096c2f425917b330ca4957fe578d02bd7f159f4560f40995c"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "2b040738ca495abe1ac6609e9786c410",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 10812529,
"upload_time": "2024-11-24T12:55:05",
"upload_time_iso_8601": "2024-11-24T12:55:05.264254Z",
"url": "https://files.pythonhosted.org/packages/6a/0b/14a56db166632349aa94b7843eda6e62c9db0b1632e921603c8adac70a6c/depthai-2.29.0.0-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "beef6801a4d41f0a50b1be335ca18b6587dfc5777c6c978d070aa1ebfbef3d2e",
"md5": "f56002b90c3953694c3d11c502db7bbc",
"sha256": "629b81882dc584229b404bffcd4f3875cd5cd90b3f4cfbfbd7228409dca5c094"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "f56002b90c3953694c3d11c502db7bbc",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 11108695,
"upload_time": "2024-11-24T12:55:08",
"upload_time_iso_8601": "2024-11-24T12:55:08.317951Z",
"url": "https://files.pythonhosted.org/packages/be/ef/6801a4d41f0a50b1be335ca18b6587dfc5777c6c978d070aa1ebfbef3d2e/depthai-2.29.0.0-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "10237fb714cc6e95f8f843005520916b4c6bbcb7d5d9e4a63f6ef8707e140f8a",
"md5": "67c8189cd84729480d593e546ab5c9c2",
"sha256": "7d6476b1b0715920325a1b196de0fb964837b1e7afe86ac1a2b1ec98f1d08b99"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "67c8189cd84729480d593e546ab5c9c2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 12738565,
"upload_time": "2024-11-24T12:55:10",
"upload_time_iso_8601": "2024-11-24T12:55:10.769738Z",
"url": "https://files.pythonhosted.org/packages/10/23/7fb714cc6e95f8f843005520916b4c6bbcb7d5d9e4a63f6ef8707e140f8a/depthai-2.29.0.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9ec305bfa85ea246236807e9a3efb9178896739099c1c3b230a6418829455fed",
"md5": "26deb68aab1355196bfd131156f85fc7",
"sha256": "146076cc46eacf6b35449b1b85f8e8a76d2f144a1ee9d778aaa426d6a9f116e2"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp38-cp38-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "26deb68aab1355196bfd131156f85fc7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 13330298,
"upload_time": "2024-11-24T12:55:13",
"upload_time_iso_8601": "2024-11-24T12:55:13.319276Z",
"url": "https://files.pythonhosted.org/packages/9e/c3/05bfa85ea246236807e9a3efb9178896739099c1c3b230a6418829455fed/depthai-2.29.0.0-cp38-cp38-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "55ad6604e03d6cb21aa52154a615ca52cdea4ffb49fc3eac52063480c17e584b",
"md5": "d391e412342c90a19feddd657881aede",
"sha256": "797de3ef5aedab438b1c56b62eb61b8536b257d2812affdf2a35d628e0f27777"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d391e412342c90a19feddd657881aede",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 13691015,
"upload_time": "2024-11-24T12:55:15",
"upload_time_iso_8601": "2024-11-24T12:55:15.806191Z",
"url": "https://files.pythonhosted.org/packages/55/ad/6604e03d6cb21aa52154a615ca52cdea4ffb49fc3eac52063480c17e584b/depthai-2.29.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c9b96d03c41fe6a71d09b1b0e9be8e7a78c063129fa4c6f428c7eeb280b887f1",
"md5": "c9126c6a2baf824e44c3e3a64cd4fffe",
"sha256": "87af2f7aa1066abe4545cb87171efc8abee9821b0f88fc4d04072c81ca0928e8"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c9126c6a2baf824e44c3e3a64cd4fffe",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 14065140,
"upload_time": "2024-11-24T12:55:18",
"upload_time_iso_8601": "2024-11-24T12:55:18.401401Z",
"url": "https://files.pythonhosted.org/packages/c9/b9/6d03c41fe6a71d09b1b0e9be8e7a78c063129fa4c6f428c7eeb280b887f1/depthai-2.29.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "239f9df1cf088a967f199a64eabdde917024a71ad50f4422562dca46ec6ae8b1",
"md5": "fb90675fea4d4be60dbd3ab244fd9059",
"sha256": "a5fec06a5861b254c1fca5a3c276762c871625185cba9a1b4d484b85105154b9"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "fb90675fea4d4be60dbd3ab244fd9059",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 10842824,
"upload_time": "2024-11-24T12:55:21",
"upload_time_iso_8601": "2024-11-24T12:55:21.513080Z",
"url": "https://files.pythonhosted.org/packages/23/9f/9df1cf088a967f199a64eabdde917024a71ad50f4422562dca46ec6ae8b1/depthai-2.29.0.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6b55627f1a5156076ab38cc12d765e93c808c51020d2486af1b699a8e6d6e2ab",
"md5": "330db7949fe52d0bd700ade26dabfd36",
"sha256": "6194552066e1fcbd554ae784aa38878fab0dced334daa9ad1ac0f40641b092b4"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "330db7949fe52d0bd700ade26dabfd36",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 11180301,
"upload_time": "2024-11-24T12:55:24",
"upload_time_iso_8601": "2024-11-24T12:55:24.216245Z",
"url": "https://files.pythonhosted.org/packages/6b/55/627f1a5156076ab38cc12d765e93c808c51020d2486af1b699a8e6d6e2ab/depthai-2.29.0.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "36a7bad7fa1055d1671ac154814a466e5ddd1429877b83cf624d158ac9aae6a2",
"md5": "dad8765c2e5b831188f8b4125c5be618",
"sha256": "a703980cea8aa2d496d990d710ce1e7c68cf7c7c23e804c12605cb156751f30f"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp39-cp39-linux_armv6l.linux_armv7l.whl",
"has_sig": false,
"md5_digest": "dad8765c2e5b831188f8b4125c5be618",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 12795292,
"upload_time": "2024-11-24T12:55:26",
"upload_time_iso_8601": "2024-11-24T12:55:26.726814Z",
"url": "https://files.pythonhosted.org/packages/36/a7/bad7fa1055d1671ac154814a466e5ddd1429877b83cf624d158ac9aae6a2/depthai-2.29.0.0-cp39-cp39-linux_armv6l.linux_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "07e2818cba0b6cac52b2a4f2b2760f92b1f414fb41433f4994a4f492f9897421",
"md5": "96963a286fc5593fde790fe8fa2eebcf",
"sha256": "0f38971591eb93271b55f9eedf0998ff4095d32cc60e3a78f57759d35e80fc9e"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "96963a286fc5593fde790fe8fa2eebcf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 12738859,
"upload_time": "2024-11-24T12:55:29",
"upload_time_iso_8601": "2024-11-24T12:55:29.399064Z",
"url": "https://files.pythonhosted.org/packages/07/e2/818cba0b6cac52b2a4f2b2760f92b1f414fb41433f4994a4f492f9897421/depthai-2.29.0.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e6e8c7f6913149f35c9315b9b00800d046573e93b8a4a24750e821a16dc05a8",
"md5": "18755e6cb4e41eb0f7de85fc1f860ce4",
"sha256": "138ea2e99a33c56ce02b45f3fe86f075c549ff00fb9a3bbc9d275b15a307911b"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp39-cp39-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "18755e6cb4e41eb0f7de85fc1f860ce4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 13331203,
"upload_time": "2024-11-24T12:55:33",
"upload_time_iso_8601": "2024-11-24T12:55:33.301532Z",
"url": "https://files.pythonhosted.org/packages/2e/6e/8c7f6913149f35c9315b9b00800d046573e93b8a4a24750e821a16dc05a8/depthai-2.29.0.0-cp39-cp39-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c2945f68e98a7c225f0431886650cdcb8f8ecff702fc82107f38aaf8f3759dca",
"md5": "bb77efdf90bd48605f662cb434062bbd",
"sha256": "0616ada4a6a2e6afbe7770bc22c13001efb99df7ab25e3c674b690a7020c34bb"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bb77efdf90bd48605f662cb434062bbd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 13692535,
"upload_time": "2024-11-24T12:55:35",
"upload_time_iso_8601": "2024-11-24T12:55:35.997857Z",
"url": "https://files.pythonhosted.org/packages/c2/94/5f68e98a7c225f0431886650cdcb8f8ecff702fc82107f38aaf8f3759dca/depthai-2.29.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef0de8f81c226cf08c45be0d057be39969308ff7e0a0f492df7e0c6b8d416858",
"md5": "30b69f421b1296e033d398651719fc91",
"sha256": "44bc530270300e273ed610b026b5cdf02a95173529c0fe853c8334fca7155244"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "30b69f421b1296e033d398651719fc91",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 14064296,
"upload_time": "2024-11-24T12:55:39",
"upload_time_iso_8601": "2024-11-24T12:55:39.965846Z",
"url": "https://files.pythonhosted.org/packages/ef/0d/e8f81c226cf08c45be0d057be39969308ff7e0a0f492df7e0c6b8d416858/depthai-2.29.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e6206af8874c2e9b5b93ab2a873bd0345df19d08a09405797e45828c30156cc1",
"md5": "8b4f543f32ae332d75caf90faa476fdc",
"sha256": "979027703dd1f5a2505745b5f3203c9e82f2a4e1c4cceeeecda14203c22d1cbc"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "8b4f543f32ae332d75caf90faa476fdc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 10842600,
"upload_time": "2024-11-24T12:55:43",
"upload_time_iso_8601": "2024-11-24T12:55:43.654034Z",
"url": "https://files.pythonhosted.org/packages/e6/20/6af8874c2e9b5b93ab2a873bd0345df19d08a09405797e45828c30156cc1/depthai-2.29.0.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "856e01c128e2784a18de57869f60d5759b8766de7e24483a3e027e19160f0e50",
"md5": "2429bcca5e033cb33a7b8ba656515c18",
"sha256": "622ad00ad196c38ea847473b8ef8bf181131f86288c01ab3f59ac3fda075237b"
},
"downloads": -1,
"filename": "depthai-2.29.0.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "2429bcca5e033cb33a7b8ba656515c18",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 11183531,
"upload_time": "2024-11-24T12:55:46",
"upload_time_iso_8601": "2024-11-24T12:55:46.241448Z",
"url": "https://files.pythonhosted.org/packages/85/6e/01c128e2784a18de57869f60d5759b8766de7e24483a3e027e19160f0e50/depthai-2.29.0.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ec4bc47cbd761e29f0a075fa1aa75db33de3ca5f2be3fd1ee84634f4c9ffd3eb",
"md5": "2748fa43ee6a003a11a14aea559eaaf4",
"sha256": "a5cd63770bb1637e0a920c30bbd991571aba71b68163dbb825856e0e92ab2fc4"
},
"downloads": -1,
"filename": "depthai-2.29.0.0.tar.gz",
"has_sig": false,
"md5_digest": "2748fa43ee6a003a11a14aea559eaaf4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 453337,
"upload_time": "2024-11-24T12:55:49",
"upload_time_iso_8601": "2024-11-24T12:55:49.402325Z",
"url": "https://files.pythonhosted.org/packages/ec/4b/c47cbd761e29f0a075fa1aa75db33de3ca5f2be3fd1ee84634f4c9ffd3eb/depthai-2.29.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-24 12:55:49",
"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"
}