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.0b3

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.0b3
File
marearts_anpr-4.0.0b3-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
marearts_anpr-4.0.0b3-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
marearts_anpr-4.0.0b3-cp314-cp314-manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
marearts_anpr-4.0.0b3-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.0b3-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
marearts_anpr-4.0.0b3-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
marearts_anpr-4.0.0b3-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
marearts_anpr-4.0.0b3-cp313-cp313-manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
marearts_anpr-4.0.0b3-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.0b3-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.0b3-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
marearts_anpr-4.0.0b3-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
marearts_anpr-4.0.0b3-cp312-cp312-manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
marearts_anpr-4.0.0b3-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.0b3-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.0b3-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
marearts_anpr-4.0.0b3-cp311-cp311-manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
marearts_anpr-4.0.0b3-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.0b3-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.0b3-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
marearts_anpr-4.0.0b3-cp310-cp310-manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
marearts_anpr-4.0.0b3-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.0b3-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.0b3-cp314-cp314-win_arm64.whl

Download URL marearts_anpr-4.0.0b3-cp314-cp314-win_arm64.whl
Size 1.1 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
8b97e612ec517d5733ae924346b64e0aec5fe49b11ed0aab532c3b057a01da44
BLAKE2b-256 checksum
How to use checksums
4b4c3a715543901bfca98dcf5c43fe15f8a445aceded39fef8b113870e92f142
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.0b3-cp314-cp314-win_amd64.whl

Download URL marearts_anpr-4.0.0b3-cp314-cp314-win_amd64.whl
Size 1.1 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
8b74cdc36d650bbce1caf673d54b542cae74c72095409ab726adc0f585de85a5
BLAKE2b-256 checksum
How to use checksums
3ddcbf66f6858503ae7ba5e3990b513be9ecb7f8c59922ca57472a95669caafa
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.0b3-cp314-cp314-manylinux2014_x86_64.whl

Download URL marearts_anpr-4.0.0b3-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
24f83482e303a34eea4dc62961ef56dd7305f0b1b0efdd5b8c89877d5ba968a5
BLAKE2b-256 checksum
How to use checksums
fd0c1b966f8b0c96690278b77b1ed0fd779fe2952ff4fe1ebd6480fbd98ae6d0
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.0b3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL marearts_anpr-4.0.0b3-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
ca054db85320d41026e48be86fd8fb234eac2e03888f3252382ea3ba2dafea07
BLAKE2b-256 checksum
How to use checksums
da13d8d3296a31648ac34a546a69b2cb3e50ae80e7aa7ce26273c9cd3a4d6ed4
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.0b3-cp314-cp314-macosx_11_0_arm64.whl

Download URL marearts_anpr-4.0.0b3-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
937663b5c8a2400df6fa8874c4301985d4b6d9f8f37fff60322214532dc3356e
BLAKE2b-256 checksum
How to use checksums
8bdfd49913eb9957d38cdc8523642c5fd0524cefa78a9c9367271d4029b42ec6
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.0b3-cp313-cp313-win_arm64.whl

Download URL marearts_anpr-4.0.0b3-cp313-cp313-win_arm64.whl
Size 1.1 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
85dc18f4c5cc70f7e6a444890b5d473cc60177047e95f78c3c85c101de735f05
BLAKE2b-256 checksum
How to use checksums
a3108907dc2b512560466ac5d20b4a38f57b7342cc9dab270889293850141207
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.0b3-cp313-cp313-win_amd64.whl

Download URL marearts_anpr-4.0.0b3-cp313-cp313-win_amd64.whl
Size 1.1 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
c3a9286d55d019916c51a992d5f7caa5d63dcdebc2a4b22dd48e1eb6898e7055
BLAKE2b-256 checksum
How to use checksums
f1c451d497786be9e8658abf30c79db60f4699b388f73bba3fc6af956b92ea19
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.0b3-cp313-cp313-manylinux2014_x86_64.whl

Download URL marearts_anpr-4.0.0b3-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
55d389d95e1f0b34438e151ebc36f3b676fef4d49a00bb6c70a1bcfea2590ba2
BLAKE2b-256 checksum
How to use checksums
825dedf1d0f4b16e7c359880892a08469f2da2ee63ee97fa56f8726770ae2125
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.0b3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL marearts_anpr-4.0.0b3-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
2683423a609fff1d597169804cdea7878c6c0d23184903440a96f31d85c5f00f
BLAKE2b-256 checksum
How to use checksums
e53f79e8d99cc6ade5decb69e5cafc01f8d579bfbfa71443064330fa0f565aee
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.0b3-cp313-cp313-macosx_10_13_universal2.whl

Download URL marearts_anpr-4.0.0b3-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
5a68a492eb60471f80c04f1d7ff4ca5746a831f1ad7197a59349a2dabda465c3
BLAKE2b-256 checksum
How to use checksums
1f28f7bda8d7b4cf89a7aa2aa9d61191797cd46d364e8f374c693de785f87242
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.0b3-cp312-cp312-win_arm64.whl

Download URL marearts_anpr-4.0.0b3-cp312-cp312-win_arm64.whl
Size 1.1 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
1e3d40a36949a2a5a4b5732e6528534c9012c4cb8ab7a79dafeef488516f8641
BLAKE2b-256 checksum
How to use checksums
020719fb5bf7d3e0fd10988ddf4bb11edab04b37b7730e60da9b8e9d469a8fbc
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.0b3-cp312-cp312-win_amd64.whl

Download URL marearts_anpr-4.0.0b3-cp312-cp312-win_amd64.whl
Size 1.1 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
edeef324b29db8fac5b042977365d7ff9fc74d40182279d34d6a39f0f02cf57e
BLAKE2b-256 checksum
How to use checksums
06260c5241cd083c672e7c35d1865d677276f3ba938edd9950b0f35e5d227095
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.0b3-cp312-cp312-manylinux2014_x86_64.whl

Download URL marearts_anpr-4.0.0b3-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
21af975502e6ec5a6ba1c6126640e0dbc566fbf932f99c34e336f99106c0cd8c
BLAKE2b-256 checksum
How to use checksums
58779705c328effd1bbc76ab1393dc9a15453d02fa8a7f91c5c6397c0993ac86
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.0b3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL marearts_anpr-4.0.0b3-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
d0ad76b2629d9530085c73c5bfcba6b2d9f4417423c9da5cb415fa053f1da630
BLAKE2b-256 checksum
How to use checksums
c5ec8c77a1c23b5d91c2051d890bb6dc0e19540a5c445f58505109ff9a3841ce
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.0b3-cp312-cp312-macosx_10_13_universal2.whl

Download URL marearts_anpr-4.0.0b3-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
02f5e9370e1b08983a874c162f2f8c8cbd0be1d062e06899ba19a00fa4ccdf8c
BLAKE2b-256 checksum
How to use checksums
6740877842fbbe96da7ef6b9747285abcc4bd9a21adcd4b4a077e3b798de1156
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.0b3-cp311-cp311-win_amd64.whl

Download URL marearts_anpr-4.0.0b3-cp311-cp311-win_amd64.whl
Size 1.1 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
6f50f04a23ac8575beacb3e9dcedfa1b4a6220c90e009d7f9845a1dd189d7ce8
BLAKE2b-256 checksum
How to use checksums
4eea4425b361840f1a1cc1776f65b0f53dc66b2ee7b6b14375bc55d3a389c877
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.0b3-cp311-cp311-manylinux2014_x86_64.whl

Download URL marearts_anpr-4.0.0b3-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
d5b9294cee77c86e3e41f4b40933251856813aabd981f6ca0bb42446336cb62a
BLAKE2b-256 checksum
How to use checksums
255e60db5331b51838fea482f1342bfcb2bec4b960e94ff562a1ac91d77034cf
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.0b3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL marearts_anpr-4.0.0b3-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
117654eba01146b5d0ecb991336abeef6063bda623e72833783039ae07de5274
BLAKE2b-256 checksum
How to use checksums
667919cf95fa98cbf396424d8d9545e4cd2f9fe029c4b0037076539d83053643
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.0b3-cp311-cp311-macosx_10_9_universal2.whl

Download URL marearts_anpr-4.0.0b3-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
68d2b63f7f5d695a8ad30254b2f7cb3fec0b9aa303c6ed7c4e4b93f540796e74
BLAKE2b-256 checksum
How to use checksums
5938929c52d37430a9dfb0a03e22f30d8941c0bff52855d6120ff64389687a23
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.0b3-cp310-cp310-win_amd64.whl

Download URL marearts_anpr-4.0.0b3-cp310-cp310-win_amd64.whl
Size 1.1 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
25db4244c444bfb1e274e8556c77f902f170f9d6beeeb1e539cab03ce7599c50
BLAKE2b-256 checksum
How to use checksums
82a95c048366895200d2f575b93f097bd20c8c9d9c67f1035617dbf313db8011
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.0b3-cp310-cp310-manylinux2014_x86_64.whl

Download URL marearts_anpr-4.0.0b3-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
2805ae14de8ce2a1a02b432f6946242891af8ea459824d0a06dcbc9f91e1e7bf
BLAKE2b-256 checksum
How to use checksums
d19987d2e7f7e87b8d736192634298b78fc70d5a2f09d3827cd7ad7427b1bb20
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.0b3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL marearts_anpr-4.0.0b3-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
88100facc310e0ff2b91eb8d336b36787cb934c034c611875c8eda6dea86e887
BLAKE2b-256 checksum
How to use checksums
26c0fbcaa5b1f0b2eeeefc2fb875132e3f8932d092e28a49b0706cb4960e6366
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.0b3-cp310-cp310-macosx_10_9_universal2.whl

Download URL marearts_anpr-4.0.0b3-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
d4914e90af0f109510b0c263ae2d4231c40789c53d7d1aa1a235099ca7a8cddf
BLAKE2b-256 checksum
How to use checksums
c5aea43a54b7ecdf9b81ad10ea638c71aaf1a8fb82c4a46c0a2880a95d8c5741
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