Entradas

Mostrando entradas de enero, 2026

Consulta el SIS Perú automáticamente con Python | Web Scraping desde cero

  En este video aprenderás web scraping en Python desde cero usando un caso real: cómo consultar si una persona está registrada en el SIS (Seguro Integral de Salud del Perú). Librerias utilizadas requests, easyOCR ***********************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">         <di...

Web scraping Tipo de Cambio SUNAT

  Aprende a obtener el tipo de cambio SUNAT usando Python y requests con web scraping sin mucho esfuerzo y fácil ***************************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> <div></div> <div></div> <div></div> </div> ...

Cómo consultar vehículos en Colombia con solo la placa | Scraping con Puppeteer

 Para este scraping utilizamos la libreria "puppeteer-real-browser" en nodejs ********************NODEJS********************* const { connect } = require("puppeteer-real-browser") function delay(timeout) {   return new Promise((resolve) => {     setTimeout(resolve, timeout);   }); } let objPlaca=null; function esperarPlaca(timeoutMs = 10000) {   return new Promise((resolve, reject) => {     const inicio = Date.now();     const interval = setInterval(() => {       if (objPlaca !== null) {         clearInterval(interval);         resolve(objPlaca);       }       if (Date.now() - inicio > timeoutMs) {         clearInterval(interval);             resolve(null);       }     }, 50); // chequea cada 50ms   }); } async function cargar(placa){   const { browser, page ...

Web Scraping en Colombia: Consulta personas por cédula de identificación

 En este scraping utilizamos python y django las librerias que se necesitan son requests ************************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>         ...

Scraping: radicación de un auto en Argentin

 Este scraping permite buscar la radicacion del registro automotor de un vehículo en argentina mediante la patente. librerias utilizadas Django, requests. *****************************************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">     ...

Web Scraping en Argentina: búsqueda de personas por DNI paso a paso

 En este video te muestro paso a paso cómo hacer Web Scraping en Argentina usando Python, aplicándolo a la búsqueda de personas por DNI mediante fuentes públicas  link del video: https://www.youtube.com/watch?v=9SNqYQ2qAC4 **************************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">   ...

Scraping consulta de tasas de depósito a plazo de bancos en Perú

 El ejemplo esta desarrolado en python con django lo cual requiere que tengas instalado: -Django y request *************************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>   ...

Web Scraping consulta persona en el REDAM(Registro de Deudores Alimentarios Morosos)

El proyecto esta hecho en python con django. para replicarlo necesitas crear un proyecto en django con las siguientes librerias json, requests, easyocr, numpy, Pillow *********************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">         ...