- Le prime tre pagine del Portale del Reclutamento
- Seguire la paginazione del Portale del Reclutamento
- Scraping sinché la pagina è "scrollabile"
La pagina di parenza è:
#!/bin/bash | |
shot-scraper -o nelson_click.png 'https://www.corriere.it' --javascript "document.querySelector('footer button#privacy-cp-wall-accept').click();" | |
shot-scraper -h 2300 'https://www.corriere.it' -o nelson_hide.png --javascript "document.querySelectorAll('.privacy-cp-wall').forEach(el => el.style.display = 'none')" |
DEN_REGIONE | OC_TEMA_SINTETICO | finanziamento_totale | num_progetti_totale | num_progetti_eseguiti | percentuale_conclusi | |
---|---|---|---|---|---|---|
VENETO | Inclusione sociale e salute | 362395807.1999994 | 3742 | 3396 | 90.75360769641902 | |
MOLISE | Ambiente | 199383361.85000008 | 191 | 11 | 5.7591623036649215 | |
EMILIA-ROMAGNA | Ambiente | 93057977.115 | 170 | 28 | 16.470588235294116 | |
UMBRIA | Inclusione sociale e salute | 106998760.20499998 | 554 | 300 | 54.151624548736464 | |
LIGURIA | Inclusione sociale e salute | 161306629.36000016 | 1580 | 1227 | 77.65822784810126 | |
FRIULI-VENEZIA GIULIA | Ambiente | 85524387.36999999 | 79 | 3 | 3.7974683544303796 | |
CALABRIA | Inclusione sociale e salute | 628911299.3999983 | 1757 | 300 | 17.07455890722823 | |
SICILIA | Inclusione sociale e salute | 1124070325.910001 | 2283 | 538 | 23.565484012264566 | |
LAZIO | Inclusione sociale e salute | 761980825.4100002 | 2296 | 1276 | 55.57491289198606 |
#!/bin/bash | |
# Requirements: | |
# - scrape-cli: https://pypi.org/project/scrape-cli/ | |
# - yq: https://github.com/kislyuk/yq | |
# - miller: https://github.com/johnkerl/miller | |
# Script to scrape movie ratings and details from "https://www.mymovies.it/cinema/palermo/" | |
curl -kL "https://www.mymovies.it/cinema/palermo/" | |
<?xml version="1.0" encoding="utf-8"?> | |
<feed xmlns="http://www.w3.org/2005/Atom" | |
xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" | |
xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xml:base="http://bdap-opendata.rgs.mef.gov.it/Proxy.svc/"> | |
<title type="text">2-'6c0df564-f95d-4d48-9a39-b70146131722@rgs'</title> | |
<id>http://bdap-opendata.rgs.mef.gov.it/Proxy.svc/MdData('6c0df564-f95d-4d48-9a39-b70146131722@rgs')/DataRows</id> | |
<updated>2024-11-13T13:19:13Z</updated> | |
<link rel="self" title="2-'6c0df564-f95d-4d48-9a39-b70146131722@rgs'" href="2-'6c0df564-f95d-4d48-9a39-b70146131722@rgs'"></link> | |
<m:count>0</m:count> | |
<entry> |
[ | |
{ | |
"id": "01jbcgevnh7kw4hmp500efmwf0", | |
"model": "gemini-1.5-flash-8b-latest", | |
"prompt": "transcript", | |
"system": null, | |
"prompt_json": null, | |
"options_json": {}, | |
"response": "Il legislatore non individua espressamente una licenza specifica da adottare, rimandando la scelta della stessa alle singole amministrazioni. Come in altri ambiti, anche in relazione ai dati pubblici si usa distinguere tra due macrotipologie di licenze rispetto alla fruizione di un'opera tutelata dal diritto d'autore: le licenze di tipo closed, chiuse, e le licenze di tipo open, aperte. Le licenze di tipo chiuso riservano tutti i diritti all'autore, utilizzando il simbolo (c). In questo caso, l'utente potr\u00e0 fruire del documento, ma non potr\u00e0 copiare, ripubblicare o modificare i contenuti protetti dalla licenza senza il consenso del titolare del copyright sull'opera. Risulta evidente, dunque, che se il dato pubblico fosse reso disponibile con una licenza di tipo closed, non si rispetterebbe il princip |
This privacy policy outlines the practices for the Facebook app used for exploring Instagram and Facebook APIs. The app does not collect, store, or share any personal information from users.
We do not collect any personal data from users. The app is strictly used for exploring and experimenting with Instagram and Facebook APIs. No user data is stored, processed, or shared in any form.
Since no data is collected, there is no data usage for any purpose, including advertising, analytics, or user profiling.
#!/bin/bash | |
set -x | |
set -e | |
set -u | |
set -o pipefail | |
mkdir -p ./tmp_opencup | |
# svuota la cartella tmp |
#!/bin/bash | |
set -x | |
set -e | |
set -u | |
set -o pipefail | |
folder="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | |
mkdir -p ./tmp_opencup |