mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-06 07:16:56 +08:00
6 lines
119 B
Python
6 lines
119 B
Python
import sys as _sys
|
|
|
|
if _sys.version_info.major >= 3:
|
|
from .openalpr import Alpr
|
|
else:
|
|
from openalpr import Alpr |