Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
hakiour committed Oct 6, 2019
1 parent ac2c7f6 commit 50f1d88
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions web/assets/css/styles.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
.white{
color: white;
}
a{
text-decoration: none;
color: white;
}
2 changes: 1 addition & 1 deletion web/py/iniciarBusqueda.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def CalculaScore():

tema = datosForm["tema"].value

url = "https://www.tripadvisor.es/ShowTopic-g187427-i42-k3947180-Racismo_en_Espana_La_pregunta_mas_incoherente_que_eh_hecho-Spain.html"
#url = "https://www.tripadvisor.es/ShowTopic-g187427-i42-k3947180-Racismo_en_Espana_La_pregunta_mas_incoherente_que_eh_hecho-Spain.html"
#url = "https://www.lavanguardia.com"
tema="racismo"

Expand Down
2 changes: 1 addition & 1 deletion web/py/obtenerListadoDominios.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
def obtenerListadoDominios( maximoLineas):
"Obtenemos los ultimos analisis realizados en nuestra bd"
mycursor = mydb.cursor()
mycursor.execute("SELECT nombreDominio FROM dominio ORDER BY fecha DESC LIMIT " + str(maximoLineas))
mycursor.execute("SELECT nombreDominio,idDominio FROM dominio ORDER BY fecha DESC LIMIT " + str(maximoLineas))

resultado = []
for item in mycursor:
Expand Down

0 comments on commit 50f1d88

Please sign in to comment.