- Intro a Python
- Por qué webscraping
- Beautiful Soup
- El flujo básico del webscraping
- Ejercicio: Países miembros de la Unión Europera
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(grunt) { | |
grunt.initConfig({ | |
concat: { | |
js: { | |
src: ['src/js/own/app.js'], | |
dest: 'dist/assets/js/scripts.js', | |
}, | |
less: { | |
src: ['src/less/colors.less', 'src/less/sizes.less', 'src/less/mixins.less', 'src/less/main.less'], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "wenreda", | |
"version": "0.0.1", | |
"description": "Enreda Web Builder", | |
"main": "", | |
"scripts": {}, | |
"author": "Enreda", | |
"license": "BSD-2-Clause", | |
"dependencies": { | |
"grunt": "~0.4.5", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import argparse | |
import sys | |
import json | |
# LOCAL FUNCTIONS | |
def encode_artist_name(value): | |
return value.replace(' ', '+') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Goto https://twitter.com/{username}/likes | |
// Open Browser Console | |
// Execute: | |
setInterval(() => { | |
for (const d of document.querySelectorAll('div[data-testid="unlike"]')) { | |
d.click() | |
} | |
window.scrollTo(0, document.body.scrollHeight) | |
}, 1000) |
OlderNewer