MaixPy


NameMaixPy JSON
Version 4.11.7 PyPI version JSON
download
home_pagehttps://github.com/Sipeed/MaixPy
SummarySipeed Maix Vision Python SDK
upload_time2025-07-29 14:43:39
maintainerNone
docs_urlNone
authorSipeed
requires_pythonNone
licenseApache 2.0
keywords machine vision ai vision iot aiot edge computing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            MaixPy (v4)
======

<div align="center">

![](https://wiki.sipeed.com/maixpy/static/image/maixpy_banner.png)

**Let's Sipeed up, Maximize AI's power!**

**MaixPy** (v4): Easily create AI projects with Python on edge device

<h3>
    <a href="https://wiki.sipeed.com/maixpy/doc/en/index.html"> Quick Start </a> |
    <a href="https://wiki.sipeed.com/maixpy/en/index.html"> Documentation </a> |
    <a href="https://wiki.sipeed.com/maixpy/api/index.html"> API </a> |
    <a href="https://wiki.sipeed.com/maixcam-pro"> Hardware </a>
</h3>

[![GitHub Repo stars](https://img.shields.io/github/stars/sipeed/MaixPy?style=social)](https://github.com/sipeed/MaixPy/stargazers)
[![Apache 2.0](https://img.shields.io/badge/license-Apache%20v2.0-orange.svg)]("https://github.com/sipeed/MaixPy/blob/main/LICENSE.md)
[![PyPI](https://img.shields.io/pypi/v/maixpy.svg)](https://pypi.python.org/pypi/maixpy/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/maixpy?label=pypi%20downloads)](https://pypi.org/project/maixpy/)
![GitHub repo size](https://img.shields.io/github/repo-size/sipeed/maixpy) 
[![Build MaixCAM](https://github.com/sipeed/MaixPy/actions/workflows/build_maixcam.yml/badge.svg)](https://github.com/sipeed/MaixPy/actions/workflows/build_maixcam.yml)
[![Trigger wiki](https://github.com/sipeed/MaixPy/actions/workflows/trigger_wiki.yml/badge.svg)](https://github.com/sipeed/MaixPy/actions/workflows/trigger_wiki.yml)

English | [中文](./README_ZH.md)

</div>

![MaixCAM](https://wiki.sipeed.com/maixpy/static/image/maixcams.png)


## Feature Overview

MaixPy offers simple Python programming combined with powerful edge computing hardware. Integrated hardware peripheral operations, video streaming, AI vision algorithms, and audio algorithms etc. With its plug-and-play design, MaixPy enables you to quickly implement your intelligent projects.

Additionally, MaixPy provides the MaixVision IDE, MaixHub online training platform, detailed documentation, and even a C/C++ SDK with identical APIs, ensuring seamless development and production deployment.

Here is a partial video demonstration of the features. For more documentation, please visit the **official website: [wiki.sipeed.com/maixpy/](https://wiki.sipeed.com/maixpy/)**

> If you like this project, please click **Star** on the top right of the [MaixPy Project](https://github.com/sipeed/maixpy) to encourage us to develop more exciting content!

[![](./docs/static/image/maixcam_play.jpg)](https://www.youtube.com/watch?v=qV1lw0UVUYI)


## Concise and Efficient Code (API) Design

With MaixPy you can easily create **AI vision project** within **10 lines of code**:

```python
from maix import camera, display, image, nn

classifier = nn.Classifier(model="/root/models/mobilenetv2.mud")
cam = camera.Camera(classifier.input_width(), classifier.input_height(), classifier.input_format())
disp = display.Display()

while 1:
    img = cam.read()
    res = classifier.classify(img)
    max_idx, max_prob = res[0]
    msg = f"{max_prob:5.2f}: {classifier.labels[max_idx]}"
    img.draw_string(10, 10, msg, image.COLOR_RED)
    disp.show(img)
```

Result:
![](https://wiki.sipeed.com/maixpy/static/video/classifier.gif)

## Edge(embeded) friendly

Simply use hardware **peripheral** like serial port:

```python
from maix import uart

devices = uart.list_devices()

serial = uart.UART(devices[0], 115200)
serial.write_str("hello world")
print("received:", serial.read(timeout = 2000))
```

## MaixVision workstation

We also provide a handy **[MaixVision](https://wiki.sipeed.com/en/maixvision)** workstation software to make development easier and faster:

<video playsinline controls muted preload src="https://github.com/sipeed/MaixPy/assets/8625829/1168a282-d7c2-45bc-9ffb-c00de1ca24f5" type="video/mp4">
MaixVision
</video>

## MaixHub online platform

**[MaixHub](https://maixhub.com)** provide free online AI train service, one click to train AI model and deploy to MaixCAM even you have no AI knowledge and expensive training equipment.

![MaixHub](https://wiki.sipeed.com/maixpy/static/image/maixhub.jpg)


## Hardware platform MaixCAM

And we provide two powerful hardware platform **[MaixCAM](https://wiki.sipeed.com/maixcam)** and **[MaixCAM-Pro](https://wiki.sipeed.com/maixcam-pro)**, with datasheet register level open.

![MaixCAM](https://wiki.sipeed.com/maixpy/static/image/maixcams.png)

| CPU | NPU | Memory |
| --- | --- | ------- |
| - 1GHz RISC-V(Linux)<br>- 700MHz RISCV-V(RTOS)<br>- 25~300MHz 8051(LowPower) | 1Tops@INT8 NPU, support BF16<br>support YOLOv5 YOLOv8 etc.| 256MB DDR3 |

| Connecting | Peripheral | MultiMedia | Buy |
| ----------- | ----- | --- | ---- |
|  USB2.0/WiFi6/BLE5.4 | IIC/PWM/SPI/UART/WDT/ADC | - 4M Camera<br>- 2.3" 552x368 Touchscreen<br>- H.264/H.265/MJPEG codec | [Sipeed Official Store](https://wiki.sipeed.com/store) |


## Who are using MaixPy?

* **AI Algorithm Engineer** who want to deploy your AI model to embedded devices.
> MaixPy provide easy-to-use API to access NPU, and docs to help you develop your AI model.
* **STEM** teacher who wants to teach AI and embedded devices to students.
> MaixPy provide easy-to-use API, PC tools, online AI train service ... Let you focus on teaching AI, not the hardware and complicated software usage.
* **Maker** who want to make some cool projects but don't want to learn complicated hardware and software.
> MaixPy provide Python API, so all you need is learn basic Python syntax, and MaixPy's API is so easy to use, you can make your project even in a few minutes.
* **Engineer** who want to make some projects but want a prototype as soon as possible.
> MaixPy is easy to build projects, and provide corresponding C++ SDK, so you can directly use MaixPy to deploy or transfer Python code to C++ in a few minutes.
* **Students** who want to learn AI, embedded development.
> We provide many docs and tutorials, and lot of open source code, to help you find learning route, and grow up step by step. From simple Python programming to `Vision`, `AI`, `Audio`, `Linux`, `RTOS` etc.
* **Enterprise** who want to develop AI vision products but have no time or engineers to develop complicated embedded system.
> Use MaixPy even graphic programming to develop your products with no more employees and time. For example, add a AI QA system to your production line, or add a AI security monitor to your office as your demand.
* **Contestants** who want to win the competition.
> MaixPy integrate many functions and easy to use, fasten your work to win the competition in limited time. There are already many contestants win the competition with MaixPy.


## Performance comparison

K210 and v831 are outdated, they have many limitations in memory, performance, NPU operators missing etc.<br>
No matter you are using them or new comer, it's recommended to upgrade to MaixCAM and MaixPy v4.<br>

Here's the comparison between them:

| Feature | Maix-I K210 | Maix-II v831 | MaixCAM |
| ------- | ----------- | ------------ | ------- |
| CPU | 400MHz RISC-V x2 | 800MHz ARM7 | **1GHz RISC-V(Linux)<br>700MHz RISC-V(RTOS)<br>25~300MHz 8051(Low Power)** |
| Memory | 6MB SRAM | 64MB DDR2 | **256MB DDR3** |
| NPU | 0.25Tops@INT8<br>official says 1T but... | 0.25Tops@INT8 | **1Tops@INT8** |
| Encoder | ✖ | 1080p@30fps | **2K@30fps** |
| Screen | 2.4" 320x240 | 1.3" 240x240 | **2.28" 552x368** / 5" 1280x720 / 7" 1280x800 / 10“ 1280x800|
| TouchScreen | ✖ | ✖ | **2.3" 552x368** |
| Camera | 30W | 200W | **500W** |
| WiFi   | 2.4G | 2.4G | **WiFi6** 2.4G/5G |
| USB    | ✖    | **USB2.0** | **USB2.0** |
| Eth    | ✖    | 100M(Optional)   | 100M(Optional) |
| SD Interface | SPI | **SDIO** | **SDIO** |
| BLE    | ✖    | ✖      | **BLE5.4** |
| OS     | RTOS | Tina Linux | **Linux + RTOS** |
| Language | C / C++ / MicroPython | C / C++ / **Python3** | C / **C++ / Python3** |
| Software | MaixPy | MaixPy3 | **MaixCDK + MaixPy v4 + opencv + numpy + ...**|
| PC software | MaixPy IDE | MaixPy3 IDE | **MaixVision** Workstation |
| Docs   | ⭐️⭐️⭐️⭐️ |  ⭐️⭐️⭐️   |  🌟🌟🌟🌟🌟 |
| Online AI train | ⭐️⭐️⭐️ |  ⭐️⭐️⭐️⭐️ |  🌟🌟🌟🌟🌟 |
| Official APPs   | ⭐️⭐️   |  ⭐️⭐️⭐️   |  🌟🌟🌟🌟🌟 |
| AI classify(224x224) | MobileNetv1 50fps<br>MobileNetv2 ✖<br>Resnet ✖ | MobileNet ✖<br>Resnet18 20fps<br>Resnet50 ✖| MobileNetv2 **130fps**<br>Resnet18 **62fps**<br>Resnet50 **28fps** |
| AI detect(NPU forward part)   | YOLOv2(224x224) 15fps |  YOLOv2(224x224) 15fps |  **YOLOv5s(224x224) 100fps<br>YOLOv5s(320x256) 70fps<br>YOLOv5s(640x640) 15fps<br>YOLOv8n(640x640) 23fps<br>YOLO11n(224x224)175fps<br>YOLO11n(320x224)120fps<br>YOLO11n(320x320)95fps<br>YOLO11n(640x640)23fps**|
| Ease of use     | ⭐️⭐️⭐️⭐️ |  ⭐️⭐️⭐️   |  🌟🌟🌟🌟🌟 |

## Maix Ecosystem

MaixPy not only a Python SDK, but have a whole ecosystem, including hardware, software, tools, docs, even cloud platform etc.
See the picture below:

![](https://wiki.sipeed.com/maixpy/static/image/maix_ecosystem.png)


## What difference between MaixPy v1, MaixPy3 and MaixPy v4?

* MaixPy v1 use MicroPython programming language, only support Sipeed Maix-I K210 series hardware, have limited third-party packages.
* MaixPy3 is designed for Sipeed Maix-II-Dock v831, not a long-term support version.
* MaixPy v4 use Python programming language, so there's much package we can use directly. MaixPy v4 support new hardware platforms of Sipeed, it's a long-term support version, the future's hardware platforms will support this version. MaixPy v4 have a MaixPy-v1 compatible API, so you can quickly migrate your MaixPy v1 project to MaixPy v4.

(MaixPy v4 Will not support Maix-I K210 series, if you are using Maix-I K210 series, it's recommended to upgrade hardware platform to use this to get more features and better performance.)

## Compile Source Code

If you want to compile MaixPy firmware from source code, refer to [Build MaixPy source code](https://wiki.sipeed.com/maixpy/doc/en/source_code/build.html) page.


## License

All files in this repository are under the terms of the [Apache License 2.0 Sipeed Ltd.](./LICENSE) except the third-party libraries or have their own license.


## Community

* Project sharing: [maixhub.com/share](https://maixhub.com/share)
* App sharing: [maixhub.com/app](https://maixhub.com/app)
* Discussion: [maixhub.com/discussion](https://maixhub.com/discussion)
* QQ group: 862340358
* Telegram: [t.me/maixpy](https://t.me/maixpy)
* Github issues: [github.com/sipeed/maixpy/issues](https://github.com/sipeed/maixpy/issues)




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Sipeed/MaixPy",
    "name": "MaixPy",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "Machine vision, AI vision, IOT, AIOT, Edge computing",
    "author": "Sipeed",
    "author_email": "support@sipeed.com",
    "download_url": null,
    "platform": null,
    "description": "MaixPy (v4)\n======\n\n<div align=\"center\">\n\n![](https://wiki.sipeed.com/maixpy/static/image/maixpy_banner.png)\n\n**Let's Sipeed up, Maximize AI's power!**\n\n**MaixPy** (v4): Easily create AI projects with Python on edge device\n\n<h3>\n    <a href=\"https://wiki.sipeed.com/maixpy/doc/en/index.html\"> Quick Start </a> |\n    <a href=\"https://wiki.sipeed.com/maixpy/en/index.html\"> Documentation </a> |\n    <a href=\"https://wiki.sipeed.com/maixpy/api/index.html\"> API </a> |\n    <a href=\"https://wiki.sipeed.com/maixcam-pro\"> Hardware </a>\n</h3>\n\n[![GitHub Repo stars](https://img.shields.io/github/stars/sipeed/MaixPy?style=social)](https://github.com/sipeed/MaixPy/stargazers)\n[![Apache 2.0](https://img.shields.io/badge/license-Apache%20v2.0-orange.svg)](\"https://github.com/sipeed/MaixPy/blob/main/LICENSE.md)\n[![PyPI](https://img.shields.io/pypi/v/maixpy.svg)](https://pypi.python.org/pypi/maixpy/)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/maixpy?label=pypi%20downloads)](https://pypi.org/project/maixpy/)\n![GitHub repo size](https://img.shields.io/github/repo-size/sipeed/maixpy) \n[![Build MaixCAM](https://github.com/sipeed/MaixPy/actions/workflows/build_maixcam.yml/badge.svg)](https://github.com/sipeed/MaixPy/actions/workflows/build_maixcam.yml)\n[![Trigger wiki](https://github.com/sipeed/MaixPy/actions/workflows/trigger_wiki.yml/badge.svg)](https://github.com/sipeed/MaixPy/actions/workflows/trigger_wiki.yml)\n\nEnglish | [\u4e2d\u6587](./README_ZH.md)\n\n</div>\n\n![MaixCAM](https://wiki.sipeed.com/maixpy/static/image/maixcams.png)\n\n\n## Feature Overview\n\nMaixPy offers simple Python programming combined with powerful edge computing hardware. Integrated hardware peripheral operations, video streaming, AI vision algorithms, and audio algorithms etc. With its plug-and-play design, MaixPy enables you to quickly implement your intelligent projects.\n\nAdditionally, MaixPy provides the MaixVision IDE, MaixHub online training platform, detailed documentation, and even a C/C++ SDK with identical APIs, ensuring seamless development and production deployment.\n\nHere is a partial video demonstration of the features. For more documentation, please visit the **official website: [wiki.sipeed.com/maixpy/](https://wiki.sipeed.com/maixpy/)**\n\n> If you like this project, please click **Star** on the top right of the [MaixPy Project](https://github.com/sipeed/maixpy) to encourage us to develop more exciting content!\n\n[![](./docs/static/image/maixcam_play.jpg)](https://www.youtube.com/watch?v=qV1lw0UVUYI)\n\n\n## Concise and Efficient Code (API) Design\n\nWith MaixPy you can easily create **AI vision project** within **10 lines of code**:\n\n```python\nfrom maix import camera, display, image, nn\n\nclassifier = nn.Classifier(model=\"/root/models/mobilenetv2.mud\")\ncam = camera.Camera(classifier.input_width(), classifier.input_height(), classifier.input_format())\ndisp = display.Display()\n\nwhile 1:\n    img = cam.read()\n    res = classifier.classify(img)\n    max_idx, max_prob = res[0]\n    msg = f\"{max_prob:5.2f}: {classifier.labels[max_idx]}\"\n    img.draw_string(10, 10, msg, image.COLOR_RED)\n    disp.show(img)\n```\n\nResult:\n![](https://wiki.sipeed.com/maixpy/static/video/classifier.gif)\n\n## Edge(embeded) friendly\n\nSimply use hardware **peripheral** like serial port:\n\n```python\nfrom maix import uart\n\ndevices = uart.list_devices()\n\nserial = uart.UART(devices[0], 115200)\nserial.write_str(\"hello world\")\nprint(\"received:\", serial.read(timeout = 2000))\n```\n\n## MaixVision workstation\n\nWe also provide a handy **[MaixVision](https://wiki.sipeed.com/en/maixvision)** workstation software to make development easier and faster:\n\n<video playsinline controls muted preload src=\"https://github.com/sipeed/MaixPy/assets/8625829/1168a282-d7c2-45bc-9ffb-c00de1ca24f5\" type=\"video/mp4\">\nMaixVision\n</video>\n\n## MaixHub online platform\n\n**[MaixHub](https://maixhub.com)** provide free online AI train service, one click to train AI model and deploy to MaixCAM even you have no AI knowledge and expensive training equipment.\n\n![MaixHub](https://wiki.sipeed.com/maixpy/static/image/maixhub.jpg)\n\n\n## Hardware platform MaixCAM\n\nAnd we provide two powerful hardware platform **[MaixCAM](https://wiki.sipeed.com/maixcam)** and **[MaixCAM-Pro](https://wiki.sipeed.com/maixcam-pro)**, with datasheet register level open.\n\n![MaixCAM](https://wiki.sipeed.com/maixpy/static/image/maixcams.png)\n\n| CPU | NPU | Memory |\n| --- | --- | ------- |\n| - 1GHz RISC-V(Linux)<br>- 700MHz RISCV-V(RTOS)<br>- 25~300MHz 8051(LowPower) | 1Tops@INT8 NPU, support BF16<br>support YOLOv5 YOLOv8 etc.| 256MB DDR3 |\n\n| Connecting | Peripheral | MultiMedia | Buy |\n| ----------- | ----- | --- | ---- |\n|  USB2.0/WiFi6/BLE5.4 | IIC/PWM/SPI/UART/WDT/ADC | - 4M Camera<br>- 2.3\" 552x368 Touchscreen<br>- H.264/H.265/MJPEG codec | [Sipeed Official Store](https://wiki.sipeed.com/store) |\n\n\n## Who are using MaixPy?\n\n* **AI Algorithm Engineer** who want to deploy your AI model to embedded devices.\n> MaixPy provide easy-to-use API to access NPU, and docs to help you develop your AI model.\n* **STEM** teacher who wants to teach AI and embedded devices to students.\n> MaixPy provide easy-to-use API, PC tools, online AI train service ... Let you focus on teaching AI, not the hardware and complicated software usage.\n* **Maker** who want to make some cool projects but don't want to learn complicated hardware and software.\n> MaixPy provide Python API, so all you need is learn basic Python syntax, and MaixPy's API is so easy to use, you can make your project even in a few minutes.\n* **Engineer** who want to make some projects but want a prototype as soon as possible.\n> MaixPy is easy to build projects, and provide corresponding C++ SDK, so you can directly use MaixPy to deploy or transfer Python code to C++ in a few minutes.\n* **Students** who want to learn AI, embedded development.\n> We provide many docs and tutorials, and lot of open source code, to help you find learning route, and grow up step by step. From simple Python programming to `Vision`, `AI`, `Audio`, `Linux`, `RTOS` etc.\n* **Enterprise** who want to develop AI vision products but have no time or engineers to develop complicated embedded system.\n> Use MaixPy even graphic programming to develop your products with no more employees and time. For example, add a AI QA system to your production line, or add a AI security monitor to your office as your demand.\n* **Contestants** who want to win the competition.\n> MaixPy integrate many functions and easy to use, fasten your work to win the competition in limited time. There are already many contestants win the competition with MaixPy.\n\n\n## Performance comparison\n\nK210 and v831 are outdated, they have many limitations in memory, performance, NPU operators missing etc.<br>\nNo matter you are using them or new comer, it's recommended to upgrade to MaixCAM and MaixPy v4.<br>\n\nHere's the comparison between them:\n\n| Feature | Maix-I K210 | Maix-II v831 | MaixCAM |\n| ------- | ----------- | ------------ | ------- |\n| CPU | 400MHz RISC-V x2 | 800MHz ARM7 | **1GHz RISC-V(Linux)<br>700MHz RISC-V(RTOS)<br>25~300MHz 8051(Low Power)** |\n| Memory | 6MB SRAM | 64MB DDR2 | **256MB DDR3** |\n| NPU | 0.25Tops@INT8<br>official says 1T but... | 0.25Tops@INT8 | **1Tops@INT8** |\n| Encoder | \u2716 | 1080p@30fps | **2K@30fps** |\n| Screen | 2.4\" 320x240 | 1.3\" 240x240 | **2.28\" 552x368** / 5\" 1280x720 / 7\" 1280x800 / 10\u201c 1280x800|\n| TouchScreen | \u2716 | \u2716 | **2.3\" 552x368** |\n| Camera | 30W | 200W | **500W** |\n| WiFi   | 2.4G | 2.4G | **WiFi6** 2.4G/5G |\n| USB    | \u2716    | **USB2.0** | **USB2.0** |\n| Eth    | \u2716    | 100M(Optional)   | 100M(Optional) |\n| SD Interface | SPI | **SDIO** | **SDIO** |\n| BLE    | \u2716    | \u2716      | **BLE5.4** |\n| OS     | RTOS | Tina Linux | **Linux + RTOS** |\n| Language | C / C++ / MicroPython | C / C++ / **Python3** | C / **C++ / Python3** |\n| Software | MaixPy | MaixPy3 | **MaixCDK + MaixPy v4 + opencv + numpy + ...**|\n| PC software | MaixPy IDE | MaixPy3 IDE | **MaixVision** Workstation |\n| Docs   | \u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f |  \u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f   |  \ud83c\udf1f\ud83c\udf1f\ud83c\udf1f\ud83c\udf1f\ud83c\udf1f |\n| Online AI train | \u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f |  \u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f |  \ud83c\udf1f\ud83c\udf1f\ud83c\udf1f\ud83c\udf1f\ud83c\udf1f |\n| Official APPs   | \u2b50\ufe0f\u2b50\ufe0f   |  \u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f   |  \ud83c\udf1f\ud83c\udf1f\ud83c\udf1f\ud83c\udf1f\ud83c\udf1f |\n| AI classify(224x224) | MobileNetv1 50fps<br>MobileNetv2 \u2716<br>Resnet \u2716 | MobileNet \u2716<br>Resnet18 20fps<br>Resnet50 \u2716| MobileNetv2 **130fps**<br>Resnet18 **62fps**<br>Resnet50 **28fps** |\n| AI detect(NPU forward part)   | YOLOv2(224x224) 15fps |  YOLOv2(224x224) 15fps |  **YOLOv5s(224x224) 100fps<br>YOLOv5s(320x256) 70fps<br>YOLOv5s(640x640) 15fps<br>YOLOv8n(640x640) 23fps<br>YOLO11n(224x224)175fps<br>YOLO11n(320x224)120fps<br>YOLO11n(320x320)95fps<br>YOLO11n(640x640)23fps**|\n| Ease of use     | \u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f |  \u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f   |  \ud83c\udf1f\ud83c\udf1f\ud83c\udf1f\ud83c\udf1f\ud83c\udf1f |\n\n## Maix Ecosystem\n\nMaixPy not only a Python SDK, but have a whole ecosystem, including hardware, software, tools, docs, even cloud platform etc.\nSee the picture below:\n\n![](https://wiki.sipeed.com/maixpy/static/image/maix_ecosystem.png)\n\n\n## What difference between MaixPy v1, MaixPy3 and MaixPy v4?\n\n* MaixPy v1 use MicroPython programming language, only support Sipeed Maix-I K210 series hardware, have limited third-party packages.\n* MaixPy3 is designed for Sipeed Maix-II-Dock v831, not a long-term support version.\n* MaixPy v4 use Python programming language, so there's much package we can use directly. MaixPy v4 support new hardware platforms of Sipeed, it's a long-term support version, the future's hardware platforms will support this version. MaixPy v4 have a MaixPy-v1 compatible API, so you can quickly migrate your MaixPy v1 project to MaixPy v4.\n\n(MaixPy v4 Will not support Maix-I K210 series, if you are using Maix-I K210 series, it's recommended to upgrade hardware platform to use this to get more features and better performance.)\n\n## Compile Source Code\n\nIf you want to compile MaixPy firmware from source code, refer to [Build MaixPy source code](https://wiki.sipeed.com/maixpy/doc/en/source_code/build.html) page.\n\n\n## License\n\nAll files in this repository are under the terms of the [Apache License 2.0 Sipeed Ltd.](./LICENSE) except the third-party libraries or have their own license.\n\n\n## Community\n\n* Project sharing: [maixhub.com/share](https://maixhub.com/share)\n* App sharing: [maixhub.com/app](https://maixhub.com/app)\n* Discussion: [maixhub.com/discussion](https://maixhub.com/discussion)\n* QQ group: 862340358\n* Telegram: [t.me/maixpy](https://t.me/maixpy)\n* Github issues: [github.com/sipeed/maixpy/issues](https://github.com/sipeed/maixpy/issues)\n\n\n\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "Sipeed Maix Vision Python SDK",
    "version": "4.11.7",
    "project_urls": {
        "Homepage": "https://github.com/Sipeed/MaixPy"
    },
    "split_keywords": [
        "machine vision",
        " ai vision",
        " iot",
        " aiot",
        " edge computing"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e1528303f6de5442951c8f5eb88c2deb4b18726f7fee103e22593eca533b600",
                "md5": "44abfddf8b34857434cc7131eef8368e",
                "sha256": "20f3b95a0a33a0aa3d8c9339e468853d3dfd707c07d5f909abf464b17d14c730"
            },
            "downloads": -1,
            "filename": "maixpy-4.11.7-cp310-cp310-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44abfddf8b34857434cc7131eef8368e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4069362,
            "upload_time": "2025-07-29T14:43:39",
            "upload_time_iso_8601": "2025-07-29T14:43:39.606355Z",
            "url": "https://files.pythonhosted.org/packages/4e/15/28303f6de5442951c8f5eb88c2deb4b18726f7fee103e22593eca533b600/maixpy-4.11.7-cp310-cp310-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "090ac05277ef0447c92abe2e62696a3ee90399b52ea7f0a4fa464c5e31821559",
                "md5": "0bec0b4c589d0563c33198b0b4e56800",
                "sha256": "165b7f6c301937e4eee66f141df5f785c9d072a7b314703073c53bbc526e6212"
            },
            "downloads": -1,
            "filename": "maixpy-4.11.7-cp311-cp311-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0bec0b4c589d0563c33198b0b4e56800",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4070864,
            "upload_time": "2025-07-29T15:13:59",
            "upload_time_iso_8601": "2025-07-29T15:13:59.055230Z",
            "url": "https://files.pythonhosted.org/packages/09/0a/c05277ef0447c92abe2e62696a3ee90399b52ea7f0a4fa464c5e31821559/maixpy-4.11.7-cp311-cp311-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8e251d9a120b9594493939009cf6b65aa8561cf2072d3ba9de6fc9902b5a2a9",
                "md5": "d2c345ce5154a22a7cd6bd149eba1d33",
                "sha256": "7166be8127c5ef42d9d1364b9cd9329c7eaba8d5c40914a36143a9901ca7e1c2"
            },
            "downloads": -1,
            "filename": "maixpy-4.11.7-cp312-cp312-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d2c345ce5154a22a7cd6bd149eba1d33",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4070976,
            "upload_time": "2025-07-29T14:44:16",
            "upload_time_iso_8601": "2025-07-29T14:44:16.660738Z",
            "url": "https://files.pythonhosted.org/packages/c8/e2/51d9a120b9594493939009cf6b65aa8561cf2072d3ba9de6fc9902b5a2a9/maixpy-4.11.7-cp312-cp312-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c49d3a1879975412916b9451b3ba1ec4b9610a2e266aa014be2d2af1c9a13d25",
                "md5": "7c1d9158364fec6776eea62a53fb64cc",
                "sha256": "ea045c76081350e683e4930e9f9b03822c01c6fb966374fff1793309d698dffc"
            },
            "downloads": -1,
            "filename": "maixpy-4.11.7-cp313-cp313-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c1d9158364fec6776eea62a53fb64cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 4070980,
            "upload_time": "2025-07-29T14:43:11",
            "upload_time_iso_8601": "2025-07-29T14:43:11.333375Z",
            "url": "https://files.pythonhosted.org/packages/c4/9d/3a1879975412916b9451b3ba1ec4b9610a2e266aa014be2d2af1c9a13d25/maixpy-4.11.7-cp313-cp313-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88b4549e1ce893230b6c2a378a4b9036cbd17a5c7d8773ea9b446068d0178e01",
                "md5": "fe2fec181ef1652220f85f839a271e1a",
                "sha256": "239273b1065883d2207a184e9004a0572aca8304871664d57b1a59380cb6f4db"
            },
            "downloads": -1,
            "filename": "maixpy-4.11.7-cp38-cp38-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe2fec181ef1652220f85f839a271e1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4068883,
            "upload_time": "2025-07-29T14:45:12",
            "upload_time_iso_8601": "2025-07-29T14:45:12.684760Z",
            "url": "https://files.pythonhosted.org/packages/88/b4/549e1ce893230b6c2a378a4b9036cbd17a5c7d8773ea9b446068d0178e01/maixpy-4.11.7-cp38-cp38-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "634e37787ff140c80c854c824a0ef7127e43ca7c6b37dd216f3ea9f96a8d6637",
                "md5": "685c56f9769def7908adaf1c470d8748",
                "sha256": "45483ce892ed326f324cd1461f4dd2483e7e715c943d3fb703f13841f8df4dac"
            },
            "downloads": -1,
            "filename": "maixpy-4.11.7-cp39-cp39-manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "685c56f9769def7908adaf1c470d8748",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4069781,
            "upload_time": "2025-07-29T14:43:39",
            "upload_time_iso_8601": "2025-07-29T14:43:39.644819Z",
            "url": "https://files.pythonhosted.org/packages/63/4e/37787ff140c80c854c824a0ef7127e43ca7c6b37dd216f3ea9f96a8d6637/maixpy-4.11.7-cp39-cp39-manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91e2c314b2de093776c22143e6ece798fb67a9407aa5361ca234d7b05d139ed1",
                "md5": "4521ca0e19ae991fd4a0e3db150ad637",
                "sha256": "a2bd90780540665bd753c29c856f00d802c11911620b5ddc0c01b1177448e5c6"
            },
            "downloads": -1,
            "filename": "MaixPy-4.11.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4521ca0e19ae991fd4a0e3db150ad637",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 16277936,
            "upload_time": "2025-07-29T15:13:57",
            "upload_time_iso_8601": "2025-07-29T15:13:57.221128Z",
            "url": "https://files.pythonhosted.org/packages/91/e2/c314b2de093776c22143e6ece798fb67a9407aa5361ca234d7b05d139ed1/MaixPy-4.11.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-29 14:43:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Sipeed",
    "github_project": "MaixPy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "maixpy"
}
        
Elapsed time: 0.80308s