1. Starbuzz Café¶

1.1. Código Starbuzz actual¶
7
from urllib.request import urlopen
precios = "https://api.allorigins.win/raw?url=http://beans.itcarlow.ie/prices.html"
pagina = urlopen(precios)
texto = pagina.read()
print(texto)
Activity: 1.1.1 ActiveCode (ac_l33_1)
1.2. El CEO solo quiere el precio¶

Este es el texto HTML “en bruto”, que es el formato de las páginas web.
El precio está incrustado en HTML
<html><head><title>Welcome to the Beans'R'Us Pricing Page</title>
<link rel="stylesheet" type="text/css" href="beansrus.css" />
</head><body>
<h2>Welcome to the Beans'R'Us Pricing Page</h2>
<p>Current price of coffee beans = <strong>$6.73</strong></p>
<p>Price valid for 15 minutes from Sun Jul 11 03:08:01 2021.</p>
</body></html>
Recibimos el output anterior como una string o cadena de caracteres.

You have attempted 1 of 2 activities on this page