Entradas

Mostrando entradas de febrero, 2026

C贸mo automatizar la consulta de vehiculos por placa en Per煤 con Python 馃殌

   En este ejemplo te muestro c贸mo automatizar la consulta de vehiculos por placa en Per煤 usando Python y Web Scraping. Vamos a crear un script real utilizando la librer铆a requests para extraer informaci贸n directamente desde la web y procesarla autom谩ticamente. ********************************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...

C贸mo automatizar la consulta del SOAT en Bolivia con con Python 馃殌

  En este video te muestro c贸mo automatizar la consulta del SOAT en Bolivia usando Python y Web Scraping. Vamos a crear un script real utilizando la librer铆a requests para extraer informaci贸n directamente desde la web y procesarla autom谩ticamente. **************************************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...

Automatizando precios del Mercado Mayorista de Lima (EMMSA) con Python | Scraping + API

En este video te muestro c贸mo crear una API en Python usando scraping con datos reales del Mercado Mayorista de Lima. ************************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>   ...