Entradas

Mostrando entradas de julio, 2026

Automatiza Certificados de Inspecci贸n Vehicular con Python 馃 (Scraping + EasyOCR)

En este ejemplo hacemos scraping para consultar certificados de inspecci贸n vehicular en per煤 Las librerias utilizadas son: - Requests -OpenCV -EasyOCR 1. HTML <!DOCTYPE html> <html> <head>     <meta name="viewport" content="width=device-width" />     <title>Index</title>     {% load static %}     <link rel="stylesheet" type="text/css" href="{% static 'styles/general.css' %}" />     <style>         .cntpreview{             background: #000;     padding: 10px;     width: 50%;     min-height: 300px;     color: #fff         }     </style> </head> <body>     <div id="divLoading" class="wrap_loading hide">         <div class="lds-ring">             <div></div>     ...