Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

MareArts ANPR

PyPI version Python versions License: Proprietary Live Demo

Automatic Number Plate Recognition — plate detection + OCR for 80+ countries, with GPU acceleration, ARM/Windows support, and Vehicle Intelligence (make, model, color, type, side, plate nation, and server-side OCR — cloud or on-device).

One license covers everything: Python SDK · REST API Server · Mobile App · Road Object Detection

Get your license at marearts.com/products/anpr · Try the live demo · Full docs & examples on GitHub


Install

pip install marearts-anpr

Linux / Windows / macOS · Python 3.10–3.14 · CPU by default (CUDA & DirectML optional).


What's new in 4.0

  • v17 models with a MAEV3 licence key. Your MAEV3 key is on your My License page.
  • Models download once, then run offline. The first run downloads each model with its certificate into ~/.marearts/anpr/. After that no internet is needed — copy that folder to an offline machine to use it there.
  • v14 / v15 / v16 models and MAEV2 keys are not supported in 4.x. To keep using them, stay on 3.x: pip install "marearts-anpr<4" with your MAEV2 key.
  • REST server access control. The server answers only this machine by default. When bound to the network, requests need the API token (ma-anpr server token).

Python SDK

Detect and read license plates in a few lines of Python.

from marearts_anpr import (
    ma_anpr_detector_v17, ma_anpr_ocr_v17, marearts_anpr_from_image_file
)

user_name = "your@email.com"          # the e-mail your licence was issued to
serial_key = "MAEV3:anpr|..."         # your MAEV3 licence key

detector = ma_anpr_detector_v17("640p_fp32", user_name, serial_key)
ocr = ma_anpr_ocr_v17("fp32", "univ", user_name, serial_key)

result = marearts_anpr_from_image_file(detector, ocr, "car.jpg")
print(result)
# {'results': [{'ocr': 'ABC1234', 'ocr_conf': 99, 'ltrb': [...], ...}], ...}

Models: detector 320p_fp32, 640p_fp32 · OCR fp32, int8.

Keeping the key in an environment variable? A MAEV3 key contains |, so quote it — unquoted, the shell reads | as a pipe and cuts the key short:

export MAREARTS_ANPR_SERIAL_KEY='MAEV3:anpr|...'           # Linux / macOS
set "MAREARTS_ANPR_SERIAL_KEY=MAEV3:anpr|..."              # Windows cmd
$env:MAREARTS_ANPR_SERIAL_KEY = 'MAEV3:anpr|...'           # Windows PowerShell

ma-anpr config stores it for you, with no quoting needed.


REST API Server

Production-ready server with a web dashboard — zero code deployment.

ma-anpr config              # one-time credential setup (MAEV3 key)
ma-anpr server start        # http://localhost:8000

curl -X POST http://localhost:8000/api/anpr -F "image=@car.jpg"

Serving other machines (ma-anpr server start --host 0.0.0.0): every request needs the API token — ma-anpr server token prints it and a dashboard sign-in link.

curl -X POST http://SERVER:8000/api/anpr -H "Authorization: Bearer <token>" -F "image=@car.jpg"

20+ endpoints: detect, batch, history, watchlist, alerts, stats, config, model selection, and more.

Docker

docker run -d --gpus all -p 8000:8000 \
  -e MAREARTS_ANPR_USERNAME="your@email.com" \
  -e MAREARTS_ANPR_SERIAL_KEY="your_MAEV3_key" \
  -e MAREARTS_ANPR_SIGNATURE="your_signature" \
  marearts-anpr-server:latest

Includes CUDA acceleration, automatic CPU fallback, web dashboard, and all endpoints.


Vehicle Intelligence (make / model / color / …)

Go beyond plate text — identify the vehicle itself: make, model, color, type, vehicle side, plate nation, and server-side OCR.

from marearts_anpr import ma_anpr_mmc

mmc = ma_anpr_mmc(user_name, serial_key, signature)
info = mmc.enrich(image, anpr_results)   # run ANPR first, then enrich
print(info)

Two backends, identical output fields:

  • Cloud — no local model, results in a single API call.
  • On-device (offline) — a compact vision-language model (Qwen3-VL-2B) on your GPU/CPU, with no internet and no quota.
ma-anpr mmc-setup           # download on-device model + engine (~1.5 GB)
ma-anpr mmc-backend local   # switch enrichment to on-device (or: cloud)
ma-anpr mmc-uninstall --all # cleanly remove the engine + model

Also available on the server via POST /api/anpr/mmc, with backend switching through GET /api/mmc/status and PUT /api/mmc/backend.


Road Object Detection

Detect persons, vehicles, and 2-wheelers in real time — included in your ANPR license.

from marearts_road_objects import ma_road_object_detector

rod = ma_road_object_detector("640p_fp32", user_name, serial_key, signature)
result = rod.detect("street.jpg")

See MareArts Road Objects.


Supported Regions

80+ countries across 12 regional groups, each with per-country character sets for maximum accuracy.

Code Region
eu Europe+ (37 countries: EU + Balkans + Indonesia)
ru Ex-USSR (15 countries)
asia Asia (17 countries)
na North America (USA, Canada, Mexico)
sa South America (Brazil, Argentina)
af Africa (South Africa, Nigeria)
oc Oceania (Australia, New Zealand)
uk United Kingdom
cn China (all provinces)
kr Korea (all plate types)
jp Japan (all prefectures)
univ Universal — all of the above

Pass a 2-letter country code (e.g. de, au, th) for best accuracy, or a group code. Unknown codes fall back to univ.


Mobile App

On-device ANPR for iOS and Android — parking, security, fleet management. On-device AI (~100–160 ms), offline capable, team collaboration, webhooks, cloud sync, and Vehicle Intelligence.

No additional license required — the app works as your ANPR license.


Support

Homepage marearts.com
License marearts.com/products/anpr
Live Demo live.marearts.com
Docs github.com/marearts/marearts-anpr
Contact hello@marearts.com
YouTube Video Examples

© 2026 MareArts. All rights reserved.

Release files for marearts-anpr 4.0.0b2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for marearts-anpr 4.0.0b2
File
marearts_anpr-4.0.0b2-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
marearts_anpr-4.0.0b2-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
marearts_anpr-4.0.0b2-cp314-cp314-manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
marearts_anpr-4.0.0b2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
marearts_anpr-4.0.0b2-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
marearts_anpr-4.0.0b2-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
marearts_anpr-4.0.0b2-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
marearts_anpr-4.0.0b2-cp313-cp313-manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
marearts_anpr-4.0.0b2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
marearts_anpr-4.0.0b2-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
marearts_anpr-4.0.0b2-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
marearts_anpr-4.0.0b2-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
marearts_anpr-4.0.0b2-cp312-cp312-manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
marearts_anpr-4.0.0b2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
marearts_anpr-4.0.0b2-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
marearts_anpr-4.0.0b2-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
marearts_anpr-4.0.0b2-cp311-cp311-manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
marearts_anpr-4.0.0b2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
marearts_anpr-4.0.0b2-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
marearts_anpr-4.0.0b2-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
marearts_anpr-4.0.0b2-cp310-cp310-manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
marearts_anpr-4.0.0b2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
marearts_anpr-4.0.0b2-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details

Total release size: 36.9 MB

Release files / marearts_anpr-4.0.0b2-cp314-cp314-win_arm64.whl

Download URL marearts_anpr-4.0.0b2-cp314-cp314-win_arm64.whl
Size 1.1 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
ee3775a56a50df9c8eeaf2ece1675d033e86f84494188b5db1f1b5614554567f
BLAKE2b-256 checksum
How to use checksums
23cc7789486289b004ad433490681adfd9f024259915e74787e6969d578e6b7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp314-cp314-win_amd64.whl

Download URL marearts_anpr-4.0.0b2-cp314-cp314-win_amd64.whl
Size 1.1 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
16d0cf723487f71c94adaffa912a7c815a436903df21daefb556a07f34fe6bd3
BLAKE2b-256 checksum
How to use checksums
2fbc863dde314f317b2eb339bd9f952aca5e902288acd14c23d3f6d9c7e1a41f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp314-cp314-manylinux2014_x86_64.whl

Download URL marearts_anpr-4.0.0b2-cp314-cp314-manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e73b8d6714026680d21361ef15b571d993017d9df56cc7e26af4d2fec2fd4fb6
BLAKE2b-256 checksum
How to use checksums
ce19dcc3ee548e7644540494f389fd74596c72142689992740d0bf4c0055f7e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL marearts_anpr-4.0.0b2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.6 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9df95a4c5cb070b07bf437c0c56dafe5d03bfa50777d9fe79ed9adae177c42b0
BLAKE2b-256 checksum
How to use checksums
210885decea1302666665d8b6a72f9f22b2050be33d45277449e908876c03f51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp314-cp314-macosx_11_0_arm64.whl

Download URL marearts_anpr-4.0.0b2-cp314-cp314-macosx_11_0_arm64.whl
Size 1.3 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
20f90fd8c872ea89e14e00e3033b5ffb9ec33150bca89f94c95c438f8a982f6e
BLAKE2b-256 checksum
How to use checksums
eb35f57cbc4f6f364713ed5cc5157202a55e1af523c112f67b50cb5c15a9baf1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp313-cp313-win_arm64.whl

Download URL marearts_anpr-4.0.0b2-cp313-cp313-win_arm64.whl
Size 1.1 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
bb81627c41a43bda4ab87a3eacbcd4313f339fa7ab86f38fc86fa7387776da46
BLAKE2b-256 checksum
How to use checksums
c7f3060a3fbb9dd300178b137568b06ab290a85ef18d75ec3eaa2219c3e70f8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp313-cp313-win_amd64.whl

Download URL marearts_anpr-4.0.0b2-cp313-cp313-win_amd64.whl
Size 1.1 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
d4323aefd8addb023031a9cdaa0cd77da4edd9f2852284c92999d2a40d928412
BLAKE2b-256 checksum
How to use checksums
00b8eb0c74056ac7dab902b623cd650d6f0bb6b65240334bd275f80543e593ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp313-cp313-manylinux2014_x86_64.whl

Download URL marearts_anpr-4.0.0b2-cp313-cp313-manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b0f77ae895ed8bd572534c4f2c085dc14b020dbc739630653e598a3f96b36074
BLAKE2b-256 checksum
How to use checksums
1b47b58848a2a17ed41688d2b8ae2e223cb54f0f2a6f71c5ab7c5995ec3338d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL marearts_anpr-4.0.0b2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.6 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
906ce2c28271cbbf21de02a4a8d4c59a4664becd3b594044ddf260fcfc0d2589
BLAKE2b-256 checksum
How to use checksums
08712b523d1f15ea832da8edd063135f2d83b6c4d85b7be5ba7420cfe6f4f5af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp313-cp313-macosx_10_13_universal2.whl

Download URL marearts_anpr-4.0.0b2-cp313-cp313-macosx_10_13_universal2.whl
Size 2.7 MB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
147cd40e296eb8de56ec8c28781d21fe2e08902fe1fa73117b659ba34d3bfd1c
BLAKE2b-256 checksum
How to use checksums
82661534a7af31c7489598c4a09f0a3bfc8a0ddf2ae391a3c1693ea578462e44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp312-cp312-win_arm64.whl

Download URL marearts_anpr-4.0.0b2-cp312-cp312-win_arm64.whl
Size 1.1 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
4e01b09b0e1dc656ecbf381777e65411ecf0036070158c2a584ca7ed1561f224
BLAKE2b-256 checksum
How to use checksums
e878f34c5acbcfefe91feacbcb6b5a16d99fc85518bde1f2298a3484d2e5d3e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp312-cp312-win_amd64.whl

Download URL marearts_anpr-4.0.0b2-cp312-cp312-win_amd64.whl
Size 1.1 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
e35173c5f9ba786287cb28924847c50563bdbfb89f2270eb96b23b758e5a6c49
BLAKE2b-256 checksum
How to use checksums
4504fa7d4c357029592537daa26c9afe58087719f18517168610c232e62340d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp312-cp312-manylinux2014_x86_64.whl

Download URL marearts_anpr-4.0.0b2-cp312-cp312-manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3f13589bf6f8d6e6774810e31f14b068659df547f4949b5097f1a8607e5db7ae
BLAKE2b-256 checksum
How to use checksums
c9ba1406591d3e37e906e78c9490b2a3e0b260e35c6f6303c5758a831d462cd7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL marearts_anpr-4.0.0b2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.5 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
3118b69680d10c64d2c2878f5f2d0cbca3198e3c7d601d1eea21296354b7add8
BLAKE2b-256 checksum
How to use checksums
178e6d090a9d436fcdc804ae8a881c20d750ca4d27e9ac4b42493a1edd169784
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp312-cp312-macosx_10_13_universal2.whl

Download URL marearts_anpr-4.0.0b2-cp312-cp312-macosx_10_13_universal2.whl
Size 2.7 MB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
07805dbe091d36e64d8c02739c8ee529cfb2a7146797d35aa1769b325b9aabe4
BLAKE2b-256 checksum
How to use checksums
98c20f9cd9908afabc5fe71ab9fd63e2cb23a569b79a8bf4cc2ea6f02eb3fdfd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp311-cp311-win_amd64.whl

Download URL marearts_anpr-4.0.0b2-cp311-cp311-win_amd64.whl
Size 1.1 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
c5011a0a806f557fe4327fcf8491843c7323bc40af3f0deb77eb19f16035193d
BLAKE2b-256 checksum
How to use checksums
5787e503694f0256e72267ba574e14624e16bb9a78fc002900407d7bc526aec7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp311-cp311-manylinux2014_x86_64.whl

Download URL marearts_anpr-4.0.0b2-cp311-cp311-manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8583613f58a2516fb64dd93fbe1c80b484c43a3c7f33f34535871ac1ee2a6321
BLAKE2b-256 checksum
How to use checksums
f5a8316144b7fb6169037fa030f24064c755b8622c1ff405cd4f52d20836e3e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL marearts_anpr-4.0.0b2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 1.5 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9f3d4960161cf3f18096f4fb50de96d5aa1639c72e3a60c5e676a63ba68a5f5b
BLAKE2b-256 checksum
How to use checksums
28198ee88e440bf2ce102db0af605f728f893e7e9ed85620eb5a0f37e61ebc01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp311-cp311-macosx_10_9_universal2.whl

Download URL marearts_anpr-4.0.0b2-cp311-cp311-macosx_10_9_universal2.whl
Size 2.7 MB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
44d17286c614d8bc8aae794cb0af470a9dea61eae47f9e5ef6a8fad71d459984
BLAKE2b-256 checksum
How to use checksums
530233544e7b89389d7e22adabda5d87e4147c21b9e461cd1e65599d4785fafc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp310-cp310-win_amd64.whl

Download URL marearts_anpr-4.0.0b2-cp310-cp310-win_amd64.whl
Size 1.1 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
4f01657d24d2a4a2261058d6c45a2d2f76780d98603606dc2eb680faf3726b81
BLAKE2b-256 checksum
How to use checksums
ab63b15e61d0ff403f21cb7a872a467f071ed5b24da2b47c9585d18dcdf53e49
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp310-cp310-manylinux2014_x86_64.whl

Download URL marearts_anpr-4.0.0b2-cp310-cp310-manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2ac7f6c5c83134b9a7aac5ea261e2ab786fa6a36fa4bd4910ef42fca75cafaa1
BLAKE2b-256 checksum
How to use checksums
b9dadf1602abb82a0a8e2433eca86f65042ba0cb1314b1d66293a177b2570a8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL marearts_anpr-4.0.0b2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 1.5 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b536f642bd5bf0916b8fe95185fb79c58fb5cfc3ecd776d3b1f43d0324223f77
BLAKE2b-256 checksum
How to use checksums
b4939540b6b61836981488b4c27a7492a6771b2d5e20863d0273b648fa60ae30
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5

Release files / marearts_anpr-4.0.0b2-cp310-cp310-macosx_10_9_universal2.whl

Download URL marearts_anpr-4.0.0b2-cp310-cp310-macosx_10_9_universal2.whl
Size 2.7 MB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
94c37b6ed86c7cb925873d4387d58d6d6c65054268ffb11fdc5d01cd2fab0ccb
BLAKE2b-256 checksum
How to use checksums
336d48e88409a4ad73becc169f07f98ee2e6415c5e4bf5ae151fe024ca5cff51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.11.5
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page