MareArts ANPR (Automatic Number Plate Recognition) library
Project description
MareArts ANPR SDK
| ANPR Detection | Road Objects Detection | Mobile App |
|---|---|---|
Automatic Number Plate Recognition (ANPR) SDK for multiple regions with GPU acceleration support.
๐ One License, All Access: SDK + Mobile App + Road Objects Detection - Use everywhere with a single license.
๐ MareArts ANPR Mobile App - v1.9.4
๐ฑ Now available on iOS! Android coming soon.
Fast, accurate, on-device license plate recognition for parking management, security, and vehicle tracking.
โจ Key Features:
- ๐ Fast on-device AI processing (~100-160ms)
- ๐ Webhook integration - Send detections to Discord, Slack, or your own server
- ๐ CSV export with bounding box, notes, reporter, auto-detected device info
- ๐ Cloud sync - Two-way background sync across devices
- ๐ Smart rules grouping - Organized A-Z for easy navigation
- ๐ Download rules from web - Upload on marearts.com, download on phone
- ๐ 100% offline capable - privacy first
- ๐บ๏ธ Map view with GPS tracking
- โ Whitelist/Blacklist management
- ๐ Multi-region support (Universal, Europe+, Korea, North America, China)
๐ Read the complete Mobile App Guide โ
Use the mobile app as your ANPR license - no additional purchase required.
Get your license at marearts.com/products/anpr
๐ NEW: ANPR Management Server
Professional server with REST API and Web Dashboard
Deploy a complete ANPR management system with real-time monitoring, detection history, and visual analytics.
Quick Start:
cd management_server
pip install -r requirements.txt # First time only
ma-anpr config # Configure credentials
python server.py # Start server
# Open http://localhost:8000/
Features: REST API, Web Dashboard, Real-time logs, SQLite database, Live model switching
๐ MareArts SDK v3.8.x
V15 OCR - Next Generation Recognition โญ
- ๐ฏ Improved Accuracy: Enhanced recognition across all regions
- ๐ Better Multi-line Handling: Improved recognition of plates with multiple text lines
- ๐ Better Performance: Higher accuracy with strong real-time throughput
- ๐ Easy Upgrade to V15: Simple drop-in replacement for V14 OCR
- โ Recommended: V15 OCR is now the default for new projects
Backward Compatible: V14 OCR continues to be fully supported
MareArts ANPR SDK Features
- ๐ Multi-Region Support: Korean, Europe+, North America, China, and Universal license plates
- ๐ Dynamic Region Switching: Change regions instantly with
set_region()without model reload - โก GPU Acceleration: CUDA, DirectML support for real-time processing
- ๐ฏ High Accuracy: Advanced models with regional vocabulary optimization
- ๐ฆ Batch Processing: Process multiple plates simultaneously
- ๐ณ Production Ready: Docker API with smart model caching and multi-architecture support
Quick Start
Installation
# CPU Installation
pip install marearts-anpr
# GPU Installation (CUDA, DirectML)
pip install marearts-anpr[gpu] # NVIDIA CUDA
pip install marearts-anpr[directml] # Windows GPU (AMD/Intel/NVIDIA)
๐ฆ See complete installation guide
Basic Usage
from marearts_anpr import ma_anpr_detector_v14, ma_anpr_ocr_v15, marearts_anpr_from_image_file
# Initialize V14 Detector
detector = ma_anpr_detector_v14(
"micro_320p_fp32",
# 320p models (Fast): pico_320p_fp32/fp16, micro_320p_fp32/fp16, small_320p_fp32/fp16, medium_320p_fp32/fp16, large_320p_fp32/fp16
# 640p models (High detection): pico_640p_fp32/fp16, micro_640p_fp32/fp16, small_640p_fp32/fp16, medium_640p_fp32/fp16, large_640p_fp32/fp16
user_name,
serial_key,
signature,
backend="cuda", # cpu, cuda, directml (auto-selected if "auto")
conf_thres=0.25, # Detection confidence threshold (default: 0.25)
iou_thres=0.5 # IoU threshold for NMS (default: 0.5)
)
# Initialize V15 OCR with regional vocabulary (Recommended - Latest)
ocr = ma_anpr_ocr_v15(
"small_fp32", # Model: pico_fp32, micro_fp32, small_fp32, medium_fp32, large_fp32
# int8 models available: pico_int8, micro_int8, small_int8, medium_int8, large_int8 (smaller, faster)
"univ", # Region: kor/kr, euplus/eup, na, china/cn, univ (choose specific region for best accuracy)
user_name,
serial_key,
signature,
backend="cuda", # cpu, cuda, directml (auto-selected if "auto")
)
# Or use V14 OCR (backward compatible)
# from marearts_anpr import ma_anpr_ocr_v14
# ocr = ma_anpr_ocr_v14("small_fp32", "univ", user_name, serial_key, signature, backend="cuda")
# Or use unified interface with version parameter
# from marearts_anpr import ma_anpr_ocr
# ocr = ma_anpr_ocr("small_fp32", "univ", user_name, serial_key, signature, version='v15', backend="cuda") # v15: Latest, or version='v14': Stable
# Process image
result = marearts_anpr_from_image_file(detector, ocr, "image.jpg")
print(result)
# Output: {'results': [{'ocr': 'ABC123', 'ocr_conf': 99, ...}], ...}
๐ก ๐ Learn more about usage
Dynamic Region Switching
Switch regions without reinitialization (works with both V14 and V15 OCR):
ocr.set_region('euplus') # Europe+ (or 'eup')
ocr.set_region('kr') # Korean
ocr.set_region('na') # North America
ocr.set_region('cn') # China
ocr.set_region('univ') # Universal (all regions)
๐ Learn more about dynamic region switching
Multiple Input Formats & CLI
From different image sources:
import cv2
from PIL import Image
from marearts_anpr import marearts_anpr_from_cv2, marearts_anpr_from_pil
result = marearts_anpr_from_cv2(detector, ocr, cv2.imread("image.jpg"))
result = marearts_anpr_from_pil(detector, ocr, Image.open("image.jpg"))
result = marearts_anpr_from_image_file(detector, ocr, "image.jpg")
CLI commands:
ma-anpr image.jpg # Process image (V15 OCR is default)
ma-anpr image.jpg --ocr-version v15 # Use V15 OCR (explicit)
ma-anpr image.jpg --ocr-version v14 # Use V14 OCR
ma-anpr test-api image.jpg # Test API (1000/day limit)
ma-anpr validate # Validate license
ma-anpr models # List available V14 and V15 models
๐ง See complete usage examples and CLI reference
Model Performance
Detector Performance (V14)
| Model Name | Detection Rate | Speed (GPU) | Notes |
|---|---|---|---|
| pico_320p_fp32 | 96.02% | 129 FPS (7.8ms) | ๐ฑ Smallest + fast |
| pico_640p_fp32 | 98.54% | 66 FPS (15.2ms) | Balanced |
| micro_320p_fp32 | 97.13% | 128 FPS (7.8ms) | ๐ Best overall |
| micro_320p_fp16 | 97.13% | 56 FPS (17.9ms) | ๐ Best mobile (50% smaller) |
| micro_640p_fp32 | 98.99% | 68 FPS (14.6ms) | Highest detection |
| small_320p_fp32 | 98.00% | 142 FPS (7.0ms) | โก Fastest |
| medium_320p_fp32 | 98.06% | 136 FPS (7.4ms) | High detection |
| large_320p_fp32 | 98.40% | 131 FPS (7.6ms) | Strong performance |
Note: 320p models are 2ร faster than 640p. FP16 models are 50% smaller with same detection rate.
OCR Performance (V15)
Average across all regions
| Model Name | Exact Match | Character Accuracy | Speed (GPU) | Notes |
|---|---|---|---|---|
| pico_fp32 | 98.66% | 99.74% | 235.1 FPS (4.32ms) | ๐ฑ Smallest, fast |
| micro_fp32 | 99.01% | 99.80% | 245.8 FPS (4.07ms) | Fast with high accuracy |
| small_fp32 | 98.66% | 99.75% | 280.2 FPS (3.57ms) | โก Fastest inference |
| medium_fp32 | 99.13% | 99.83% | 254.5 FPS (3.92ms) | ๐ฏ Best accuracy |
| large_fp32 | 98.99% | 99.81% | 241.5 FPS (4.14ms) | High accuracy |
int8 Models (smaller files):
- pico_int8, micro_int8, small_int8, medium_int8, large_int8
- 75% smaller file size, similar accuracy
Supported Regions: Korea (kor or kr), Europe+ (euplus or eup), North America (na), China (china or cn), Universal (univ)
Note: Both short codes and full names are accepted
๐ See all models and benchmarks
Regional Support
MareArts ANPR supports license plates from multiple regions with specialized vocabulary optimization:
- ๐ฐ๐ท Korean (
kr) - Korean license plates with Hangul characters (best accuracy: 99.56%) - ๐ช๐บ Europe+ (
eup) - EU countries + Albania, Andorra, Bosnia & Herzegovina, Indonesia, and more - ๐บ๐ธ๐จ๐ฆ๐ฒ๐ฝ North America (
na) - USA, Canada, and Mexico license plates - ๐จ๐ณ China (
cn) - Chinese license plates with province codes - ๐ Universal (
univ) - All regions (default, but choose specific region for best accuracy)
๐ก Dynamic Region Switching: Use ocr.set_region('kr') to switch regions instantly without reloading the model, saving ~180 MB per additional region.
๐ See complete regional support and character sets
Documentation
- ๐ฆ Installation Guide - Detailed installation options and requirements
- ๐ง Usage Examples - Python SDK, CLI usage, dynamic region switching, and environment variables
- ๐ป Example Code - Basic, advanced, and batch processing examples
- ๐ Model Versions - Available models, benchmarks, and performance metrics
- ๐ Regional Support - Supported countries and character sets
- ๐ณ Docker Deployment - Container setup, API server, and multi-architecture builds
- ๐งช Try ANPR - Test our ANPR without license (1000 requests/day)
- โ FAQ - Licensing, regions, features, and troubleshooting
MareArts Ecosystem
Explore our AI toolkit:
- marearts-anpr - Automatic Number Plate Recognition (GitHub)
- ๐ marearts-anpr Mobile App - ANPR on iOS & Android (App Store | Guide)
- marearts-road-objects - Road object detection for persons, vehicles, and 2-wheelers (GitHub)
- marearts-xcolor - Color extraction and similarity analysis (GitHub)
- marearts-mast - Real-time panoramic stitching (GitHub)
- marearts-crystal - Encryption and decryption toolkit (PyPI)
Support & Resources
| Resource | Link |
|---|---|
| ๐ง Contact | hello@marearts.com |
| ๐ Homepage | https://marearts.com |
| ๐ณ License Purchase | ANPR Solution |
| ๐ฎ Live Demo | http://live.marearts.com |
| ๐บ Video Examples | YouTube Playlist |
License
ยฉ 2024 MareArts. All rights reserved.
This software requires a valid license key. Visit MareArts ANPR Solution for licensing options.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file marearts_anpr-3.8.3-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 523.0 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f18d1dff6e66bca01d539a4bd2e9eea9fcf487a2a4b02a8c0ad4947267069d2
|
|
| MD5 |
52fdb5c72c94809d896b215d42ed48b1
|
|
| BLAKE2b-256 |
a9730199ab3c98b9ecda77e2673db4f9fd772efab547be1e3d02a6ec9d32f583
|
File details
Details for the file marearts_anpr-3.8.3-cp314-cp314-manylinux2014_x86_64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp314-cp314-manylinux2014_x86_64.whl
- Upload date:
- Size: 747.4 kB
- Tags: CPython 3.14
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b7bbc36e198f675f534cf8c2c692aae26fd2b5e06303417387920763b06cd8e
|
|
| MD5 |
f7881ce9b2659fa7e856adf3d687d768
|
|
| BLAKE2b-256 |
7f04b4c68008aa51529baa256be9fd4dfbd319094ac8f2b5f8a68d356a9f089d
|
File details
Details for the file marearts_anpr-3.8.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 733.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c38f2ab583608a0e5e3a4baa3817ed578565b43217a679b84d737466c9b56ff
|
|
| MD5 |
6f49f9c2fd81b3d944774aa3ee23305f
|
|
| BLAKE2b-256 |
5c09fe3ac151be9206c8d5f6eef3c5a5f232587e9a5cb32fc3ff22f27482bba3
|
File details
Details for the file marearts_anpr-3.8.3-cp314-cp314-macosx_10_15_universal2.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp314-cp314-macosx_10_15_universal2.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08ae42ec19ec5c0921dd48949a9262fd04e16db9f8903863ed07fc930d7d7637
|
|
| MD5 |
5d3d0da234fb9b4d7ff43b9d9b6ba3e2
|
|
| BLAKE2b-256 |
514503353aa9a7d42a72e3a7e6aacd7b6b3da23e3fe3abd36ab6229fbc2e0dc2
|
File details
Details for the file marearts_anpr-3.8.3-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 524.8 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ef22c8ef0eb04ea9aac76b8b767fad8d2eb7c3ef328c01bf4ecca24cbd1ad6a
|
|
| MD5 |
1cce7d3f40e2f2e1b5df671c3bc55269
|
|
| BLAKE2b-256 |
6413080a295b74e1156e6fafa6d3b39e34dba88bcc033ce5a0b7942517c486eb
|
File details
Details for the file marearts_anpr-3.8.3-cp313-cp313-manylinux2014_x86_64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp313-cp313-manylinux2014_x86_64.whl
- Upload date:
- Size: 745.3 kB
- Tags: CPython 3.13
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3402bfe74acec53e659f96c83f00de7afa2caa11dcf810645bb50a784b4fb806
|
|
| MD5 |
e1532720c18baed3014cb28238474da1
|
|
| BLAKE2b-256 |
59f51798e9e25c78a68b537c09976e7a6816cceec7bf1874843c14440f239b2b
|
File details
Details for the file marearts_anpr-3.8.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 716.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43c2e0b8cdab1f9e597ad355b1d02935c1e628619e09e7ccee14db90c8720487
|
|
| MD5 |
cb3e995dfbbed9e107cdfa093553230b
|
|
| BLAKE2b-256 |
2e2b8f2055aa81c34d9d0bb3755b47704d043f7bf373c0fa63ef57e903585e42
|
File details
Details for the file marearts_anpr-3.8.3-cp313-cp313-macosx_10_13_universal2.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a73afd74eea42bc8cc1749420a5119b25900e6c495271d2c0dfe878f5c6b2d3
|
|
| MD5 |
40c169a2a2c520cff1029d20c3a19a32
|
|
| BLAKE2b-256 |
0f64bf8fe8d1ba1025330a3a3bd234076f20c0e19ee9b7ae3670e94bb5db4d78
|
File details
Details for the file marearts_anpr-3.8.3-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 527.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b74f5764dcda33e8ec1088aede54d5b925473e2693ae288b5cfd2b4a40c86aa
|
|
| MD5 |
30ad3f2d39c47774825bf4fc87b41007
|
|
| BLAKE2b-256 |
19a88698a60e3ccd74a6d9879c33f8f0df53bc0d6f870268f35db109852ce0eb
|
File details
Details for the file marearts_anpr-3.8.3-cp312-cp312-manylinux2014_x86_64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp312-cp312-manylinux2014_x86_64.whl
- Upload date:
- Size: 745.8 kB
- Tags: CPython 3.12
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40d0ebfad067e5184440845fb876c71e010d08774e2d90dab2b9397a3b1764a0
|
|
| MD5 |
f3c8f9a9baffac7cf6cf81d2e74e93c1
|
|
| BLAKE2b-256 |
4ea3c1757df36dc319b9af0de1445917aa07efa8cea7b0041ead49aaeaa87ddd
|
File details
Details for the file marearts_anpr-3.8.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 718.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7a404dba938ecfdcff52596ffc29ae3d987941d65b0d0b7eec1c97b64f04022
|
|
| MD5 |
496c2f91a9bec26875e5734653e0bf8d
|
|
| BLAKE2b-256 |
10691181aa336ca850c54d920faf44df994ddd1d515c7e2b249b63bec8d5b5fa
|
File details
Details for the file marearts_anpr-3.8.3-cp312-cp312-macosx_10_13_universal2.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp312-cp312-macosx_10_13_universal2.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56b15e56e8f7ff4e790a8612d66cde63cb6eb4c4f3c65b157615ad8effe5bac1
|
|
| MD5 |
fdbd6c11ba1b91cb6fa21a8ffcc7f8bd
|
|
| BLAKE2b-256 |
30eec02070c2e63788e5794206c18a5f01585d46ded2d00904b72a5c8eeca489
|
File details
Details for the file marearts_anpr-3.8.3-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 534.1 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21165974f3765eb3720f969b055de07cac7ff3cf15833c0493037efd13e96a7d
|
|
| MD5 |
72d2c47739509f3cc609321968d4a892
|
|
| BLAKE2b-256 |
214cd296e69050be7a101b80acada62c6bddf7be4156dd34ddee7ad4c9460766
|
File details
Details for the file marearts_anpr-3.8.3-cp311-cp311-manylinux2014_x86_64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp311-cp311-manylinux2014_x86_64.whl
- Upload date:
- Size: 754.2 kB
- Tags: CPython 3.11
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e35c1cac6ed354e6d22a6f8f9b9bf419815aa857803d4675630dd41816bc5e67
|
|
| MD5 |
8010ac1260ecc1ef1f7a8fcdcc693825
|
|
| BLAKE2b-256 |
eb54ae684f31d338b52d1aedc2fbedbcfb07d0edbef889840f75bb9b28bba851
|
File details
Details for the file marearts_anpr-3.8.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 725.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13211007454ac406817023ae731124ee538a1cc413ee15a62ea128bc39cc5d08
|
|
| MD5 |
127a7af6dfd8c739e157603574cbf35a
|
|
| BLAKE2b-256 |
846bfdbd28ef32a60c8b979453abedf2476924f53df1ec490c15f3aefd5df4f8
|
File details
Details for the file marearts_anpr-3.8.3-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
095c2c7ad4f554638e797370c93ae40462e709425947e57e6248f4b038a7a82f
|
|
| MD5 |
e3ad70c873c9ade16b65b7a5f7ae6ad9
|
|
| BLAKE2b-256 |
171370f835a9f13a5d8dfb0ed9bfef975bcbe7fda53af0805fef9e3d4605212a
|
File details
Details for the file marearts_anpr-3.8.3-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 532.8 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
254197097c6dcceaac51112949ab691a550063f153ac2f8bd0b0250e4076f3da
|
|
| MD5 |
cdc0d0fbe080c898190cf2eb38190838
|
|
| BLAKE2b-256 |
15502bcfe20c72838e9fb4d77b60a61fad8214b6daaba756987a52d1cefc6e30
|
File details
Details for the file marearts_anpr-3.8.3-cp310-cp310-manylinux2014_x86_64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp310-cp310-manylinux2014_x86_64.whl
- Upload date:
- Size: 758.3 kB
- Tags: CPython 3.10
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8bd7b93d04e5e73295c9929e00f103d559fe63ee08c8a6f48f5c6dd7e9749d9d
|
|
| MD5 |
cf91bb816260b1e094587e50850e2850
|
|
| BLAKE2b-256 |
fcff5fd13c57971036ae922ea41ab14e1185e0c1cbadc2d6fa45d84dc240126a
|
File details
Details for the file marearts_anpr-3.8.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 729.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37a65ac6a6c3beddc489306af78169943214be8890d73e3da8129d315a45767d
|
|
| MD5 |
d93787c20b105cc7cc85b3f7483409c0
|
|
| BLAKE2b-256 |
b95b3207b47e456b480e24bb0661ebfefd6ccaffcba2b4c58033dd412494c512
|
File details
Details for the file marearts_anpr-3.8.3-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ba6dad11b697087b72c011629d07f355bde96d73bea3053eb3cfe29eeb46129
|
|
| MD5 |
e67d2b52e992dd5554679e911590ba4b
|
|
| BLAKE2b-256 |
df71358a62ea4322dde01e9044fd9baa59343debe5cd54c324c061401c7306e6
|
File details
Details for the file marearts_anpr-3.8.3-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 535.5 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2373f33ed9c041f4a2bddd1a37f65f765eba250dfbff54989b74cc4843c4cb46
|
|
| MD5 |
0a0480000f7114783ca60f929d8404ab
|
|
| BLAKE2b-256 |
a43404640c0e73a1761a2bb6efd3d3ce26eb5b07acee31fc12bb9fc942e2afe9
|
File details
Details for the file marearts_anpr-3.8.3-cp39-cp39-manylinux2014_x86_64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp39-cp39-manylinux2014_x86_64.whl
- Upload date:
- Size: 761.6 kB
- Tags: CPython 3.9
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5be6bc08881e2f48f426405402af06dfbc4eb658e86890440223e15a4d1300f4
|
|
| MD5 |
665d2807c53fe783956e4efd565a05a5
|
|
| BLAKE2b-256 |
270e7d04a81bce1037f41db60cdc396380c52f65d60c9c8eff3fe7fa2a67964d
|
File details
Details for the file marearts_anpr-3.8.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Upload date:
- Size: 733.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebe9493726c5e2ad841733cdec53d1ade4f30e803b897f5db7e69776221813da
|
|
| MD5 |
a4668856c93862ba2ba96345fb2be0d1
|
|
| BLAKE2b-256 |
df872b58fa4a65de739f70061116d32df0b3d83e5cb78df4e5244607cdc17b8a
|
File details
Details for the file marearts_anpr-3.8.3-cp39-cp39-macosx_10_9_universal2.whl.
File metadata
- Download URL: marearts_anpr-3.8.3-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00df3c4204ac534cddc741c7ac9091a3cbe6db54f825572fc09f190311b054b5
|
|
| MD5 |
138cf1d5d05342e7a793181dab005540
|
|
| BLAKE2b-256 |
d3ba8ab46ebe446495b403410712d0fcb41ea0327c869e5c3eec93c60805826c
|