├── .gitattributes ├── .gitignore ├── EXAMPLE CODE ├── .htaccess ├── BeautifulSoup.py ├── aa_readme.txt ├── argfile.py ├── argtest.py ├── avelist.py ├── avenum.py ├── average.py ├── badhtml.html ├── celsius.py ├── cleanup.sh ├── clown.txt ├── copytildone.py ├── count1.py ├── count2.py ├── count3.py ├── curl1.py ├── curl2.py ├── curl3.py ├── db1.py ├── db2.py ├── egg.py ├── emaildb.py ├── fahren.py ├── geodata.zip ├── geodata │ ├── README.txt │ ├── geodump.py │ ├── geoload.py │ ├── where.data │ ├── where.html │ └── where.js ├── geojson.py ├── geoxml.py ├── gmane.zip ├── gmane │ ├── Chart.bundle.js │ ├── README.txt │ ├── d3.layout.cloud.js │ ├── d3.v3.js │ ├── gbasic.py │ ├── gline.htm │ ├── gline.py │ ├── gline2.htm │ ├── gline3.htm │ ├── gmane.py │ ├── gmodel.py │ ├── gword.htm │ ├── gword.py │ ├── gyear.py │ └── mapping.sqlite ├── grade.py ├── graphics │ ├── graphics.py │ └── histogram.py ├── greet.py ├── grep.py ├── hidden.py ├── intro-short.txt ├── intro.txt ├── json1.py ├── json2.py ├── largest.py ├── mailcount.py ├── mailtop.py ├── mbox-short.txt ├── mbox.txt ├── oauth.py ├── open.py ├── pagerank.zip ├── pagerank │ ├── BeautifulSoup.py │ ├── LICENSE │ ├── README.txt │ ├── d3.v2.js │ ├── force.css │ ├── force.html │ ├── force.js │ ├── spdump.py │ ├── spider.js │ ├── spider.py │ ├── spjson.py │ ├── sprank.py │ └── spreset.py ├── pals.py ├── party1.py ├── party2.py ├── party3.py ├── party4.py ├── party5.py ├── pay.py ├── pay2.py ├── pay3.py ├── re01.py ├── re02.py ├── re03.py ├── re04.py ├── re05.py ├── re06.py ├── re07.py ├── re08.py ├── re09.py ├── re10.py ├── re11.py ├── re12.py ├── re13.py ├── re14.py ├── romeo-full.txt ├── romeo.txt ├── roster.py ├── roster.zip ├── roster │ ├── roster.py │ └── roster_data.json ├── search1.py ├── search10.py ├── search2.py ├── search3.py ├── search4.py ├── search5.py ├── search6.py ├── search7.py ├── search8.py ├── search9.py ├── sequence.py ├── socket1.py ├── socket2.py ├── soft.py ├── spamave.py ├── tracks.zip ├── tracks │ ├── Library.xml │ ├── README.txt │ └── tracks.py ├── twdump.py ├── twfriends.py ├── twitter1.py ├── twitter2.py ├── twjoin.py ├── twspider.py ├── twtest.py ├── twurl.py ├── txtcheck.py ├── txtcheck2.py ├── txtcheck3.py ├── txtcount.py ├── txtdelete.py ├── txtmd5.py ├── txtsize.py ├── urljpeg.py ├── urllib1.py ├── urllib2.py ├── urllink2.py ├── urllink3.py ├── urllinks.py ├── urlregex.py ├── urlwords.py ├── whathour.py ├── wikidata.db ├── wikigrade.py ├── wordlist.py ├── words.py ├── words.txt ├── xml1.py └── xml2.py ├── README.md ├── Textbook - Castellano.epub ├── Textbook - English.epub ├── Unit 1 - Introduction ├── A1.1 - Code screenshot.PNG ├── A1.2. - Script execution.PNG └── C1.1 - Firstcode.py ├── Unit 2 - Regular expressions ├── A.2.1 - regex text sample.txt ├── A.2.2 - regex text data.txt └── C2.1 - Programming assignment.py ├── Unit 3 - Networks and sockets └── C3.1. - Programming assignment.py ├── Unit 4 - Programs that surf the web ├── BeautifulSoup.py ├── BeautifulSoup.pyc ├── C4.1. Programming assignment.py └── C4.2. Programming assignment 2.py ├── Unit 5 - Web services and XML ├── BeautifulSoup.py ├── BeautifulSoup.pyc └── C5.1. Programming assignment.py └── Unit 6 - JSON and the REST architecture ├── C.6.1. - Programming assignment 1.py └── C.6.2. - Programming assignment 2.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/.gitignore -------------------------------------------------------------------------------- /EXAMPLE CODE/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/.htaccess -------------------------------------------------------------------------------- /EXAMPLE CODE/BeautifulSoup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/BeautifulSoup.py -------------------------------------------------------------------------------- /EXAMPLE CODE/aa_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/aa_readme.txt -------------------------------------------------------------------------------- /EXAMPLE CODE/argfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/argfile.py -------------------------------------------------------------------------------- /EXAMPLE CODE/argtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/argtest.py -------------------------------------------------------------------------------- /EXAMPLE CODE/avelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/avelist.py -------------------------------------------------------------------------------- /EXAMPLE CODE/avenum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/avenum.py -------------------------------------------------------------------------------- /EXAMPLE CODE/average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/average.py -------------------------------------------------------------------------------- /EXAMPLE CODE/badhtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/badhtml.html -------------------------------------------------------------------------------- /EXAMPLE CODE/celsius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/celsius.py -------------------------------------------------------------------------------- /EXAMPLE CODE/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/cleanup.sh -------------------------------------------------------------------------------- /EXAMPLE CODE/clown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/clown.txt -------------------------------------------------------------------------------- /EXAMPLE CODE/copytildone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/copytildone.py -------------------------------------------------------------------------------- /EXAMPLE CODE/count1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/count1.py -------------------------------------------------------------------------------- /EXAMPLE CODE/count2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/count2.py -------------------------------------------------------------------------------- /EXAMPLE CODE/count3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/count3.py -------------------------------------------------------------------------------- /EXAMPLE CODE/curl1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/curl1.py -------------------------------------------------------------------------------- /EXAMPLE CODE/curl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/curl2.py -------------------------------------------------------------------------------- /EXAMPLE CODE/curl3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/curl3.py -------------------------------------------------------------------------------- /EXAMPLE CODE/db1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/db1.py -------------------------------------------------------------------------------- /EXAMPLE CODE/db2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/db2.py -------------------------------------------------------------------------------- /EXAMPLE CODE/egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/egg.py -------------------------------------------------------------------------------- /EXAMPLE CODE/emaildb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/emaildb.py -------------------------------------------------------------------------------- /EXAMPLE CODE/fahren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/fahren.py -------------------------------------------------------------------------------- /EXAMPLE CODE/geodata.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/geodata.zip -------------------------------------------------------------------------------- /EXAMPLE CODE/geodata/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/geodata/README.txt -------------------------------------------------------------------------------- /EXAMPLE CODE/geodata/geodump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/geodata/geodump.py -------------------------------------------------------------------------------- /EXAMPLE CODE/geodata/geoload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/geodata/geoload.py -------------------------------------------------------------------------------- /EXAMPLE CODE/geodata/where.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/geodata/where.data -------------------------------------------------------------------------------- /EXAMPLE CODE/geodata/where.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/geodata/where.html -------------------------------------------------------------------------------- /EXAMPLE CODE/geodata/where.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/geodata/where.js -------------------------------------------------------------------------------- /EXAMPLE CODE/geojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/geojson.py -------------------------------------------------------------------------------- /EXAMPLE CODE/geoxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/geoxml.py -------------------------------------------------------------------------------- /EXAMPLE CODE/gmane.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/gmane.zip -------------------------------------------------------------------------------- /EXAMPLE CODE/gmane/Chart.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/gmane/Chart.bundle.js -------------------------------------------------------------------------------- /EXAMPLE CODE/gmane/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/gmane/README.txt -------------------------------------------------------------------------------- /EXAMPLE CODE/gmane/d3.layout.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/gmane/d3.layout.cloud.js -------------------------------------------------------------------------------- /EXAMPLE CODE/gmane/d3.v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/gmane/d3.v3.js -------------------------------------------------------------------------------- /EXAMPLE CODE/gmane/gbasic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/gmane/gbasic.py -------------------------------------------------------------------------------- /EXAMPLE CODE/gmane/gline.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/gmane/gline.htm -------------------------------------------------------------------------------- /EXAMPLE CODE/gmane/gline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/gmane/gline.py -------------------------------------------------------------------------------- /EXAMPLE CODE/gmane/gline2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/gmane/gline2.htm -------------------------------------------------------------------------------- /EXAMPLE CODE/gmane/gline3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/gmane/gline3.htm -------------------------------------------------------------------------------- /EXAMPLE CODE/gmane/gmane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/gmane/gmane.py -------------------------------------------------------------------------------- /EXAMPLE CODE/gmane/gmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/gmane/gmodel.py -------------------------------------------------------------------------------- /EXAMPLE CODE/gmane/gword.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/gmane/gword.htm -------------------------------------------------------------------------------- /EXAMPLE CODE/gmane/gword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/gmane/gword.py -------------------------------------------------------------------------------- /EXAMPLE CODE/gmane/gyear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/gmane/gyear.py -------------------------------------------------------------------------------- /EXAMPLE CODE/gmane/mapping.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/gmane/mapping.sqlite -------------------------------------------------------------------------------- /EXAMPLE CODE/grade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/grade.py -------------------------------------------------------------------------------- /EXAMPLE CODE/graphics/graphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/graphics/graphics.py -------------------------------------------------------------------------------- /EXAMPLE CODE/graphics/histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/graphics/histogram.py -------------------------------------------------------------------------------- /EXAMPLE CODE/greet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/greet.py -------------------------------------------------------------------------------- /EXAMPLE CODE/grep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/grep.py -------------------------------------------------------------------------------- /EXAMPLE CODE/hidden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/hidden.py -------------------------------------------------------------------------------- /EXAMPLE CODE/intro-short.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/intro-short.txt -------------------------------------------------------------------------------- /EXAMPLE CODE/intro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/intro.txt -------------------------------------------------------------------------------- /EXAMPLE CODE/json1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/json1.py -------------------------------------------------------------------------------- /EXAMPLE CODE/json2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/json2.py -------------------------------------------------------------------------------- /EXAMPLE CODE/largest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/largest.py -------------------------------------------------------------------------------- /EXAMPLE CODE/mailcount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/mailcount.py -------------------------------------------------------------------------------- /EXAMPLE CODE/mailtop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/mailtop.py -------------------------------------------------------------------------------- /EXAMPLE CODE/mbox-short.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/mbox-short.txt -------------------------------------------------------------------------------- /EXAMPLE CODE/mbox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/mbox.txt -------------------------------------------------------------------------------- /EXAMPLE CODE/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/oauth.py -------------------------------------------------------------------------------- /EXAMPLE CODE/open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/open.py -------------------------------------------------------------------------------- /EXAMPLE CODE/pagerank.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pagerank.zip -------------------------------------------------------------------------------- /EXAMPLE CODE/pagerank/BeautifulSoup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pagerank/BeautifulSoup.py -------------------------------------------------------------------------------- /EXAMPLE CODE/pagerank/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pagerank/LICENSE -------------------------------------------------------------------------------- /EXAMPLE CODE/pagerank/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pagerank/README.txt -------------------------------------------------------------------------------- /EXAMPLE CODE/pagerank/d3.v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pagerank/d3.v2.js -------------------------------------------------------------------------------- /EXAMPLE CODE/pagerank/force.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pagerank/force.css -------------------------------------------------------------------------------- /EXAMPLE CODE/pagerank/force.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pagerank/force.html -------------------------------------------------------------------------------- /EXAMPLE CODE/pagerank/force.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pagerank/force.js -------------------------------------------------------------------------------- /EXAMPLE CODE/pagerank/spdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pagerank/spdump.py -------------------------------------------------------------------------------- /EXAMPLE CODE/pagerank/spider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pagerank/spider.js -------------------------------------------------------------------------------- /EXAMPLE CODE/pagerank/spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pagerank/spider.py -------------------------------------------------------------------------------- /EXAMPLE CODE/pagerank/spjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pagerank/spjson.py -------------------------------------------------------------------------------- /EXAMPLE CODE/pagerank/sprank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pagerank/sprank.py -------------------------------------------------------------------------------- /EXAMPLE CODE/pagerank/spreset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pagerank/spreset.py -------------------------------------------------------------------------------- /EXAMPLE CODE/pals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pals.py -------------------------------------------------------------------------------- /EXAMPLE CODE/party1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/party1.py -------------------------------------------------------------------------------- /EXAMPLE CODE/party2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/party2.py -------------------------------------------------------------------------------- /EXAMPLE CODE/party3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/party3.py -------------------------------------------------------------------------------- /EXAMPLE CODE/party4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/party4.py -------------------------------------------------------------------------------- /EXAMPLE CODE/party5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/party5.py -------------------------------------------------------------------------------- /EXAMPLE CODE/pay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pay.py -------------------------------------------------------------------------------- /EXAMPLE CODE/pay2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pay2.py -------------------------------------------------------------------------------- /EXAMPLE CODE/pay3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/pay3.py -------------------------------------------------------------------------------- /EXAMPLE CODE/re01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/re01.py -------------------------------------------------------------------------------- /EXAMPLE CODE/re02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/re02.py -------------------------------------------------------------------------------- /EXAMPLE CODE/re03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/re03.py -------------------------------------------------------------------------------- /EXAMPLE CODE/re04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/re04.py -------------------------------------------------------------------------------- /EXAMPLE CODE/re05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/re05.py -------------------------------------------------------------------------------- /EXAMPLE CODE/re06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/re06.py -------------------------------------------------------------------------------- /EXAMPLE CODE/re07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/re07.py -------------------------------------------------------------------------------- /EXAMPLE CODE/re08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/re08.py -------------------------------------------------------------------------------- /EXAMPLE CODE/re09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/re09.py -------------------------------------------------------------------------------- /EXAMPLE CODE/re10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/re10.py -------------------------------------------------------------------------------- /EXAMPLE CODE/re11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/re11.py -------------------------------------------------------------------------------- /EXAMPLE CODE/re12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/re12.py -------------------------------------------------------------------------------- /EXAMPLE CODE/re13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/re13.py -------------------------------------------------------------------------------- /EXAMPLE CODE/re14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/re14.py -------------------------------------------------------------------------------- /EXAMPLE CODE/romeo-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/romeo-full.txt -------------------------------------------------------------------------------- /EXAMPLE CODE/romeo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/romeo.txt -------------------------------------------------------------------------------- /EXAMPLE CODE/roster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/roster.py -------------------------------------------------------------------------------- /EXAMPLE CODE/roster.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/roster.zip -------------------------------------------------------------------------------- /EXAMPLE CODE/roster/roster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/roster/roster.py -------------------------------------------------------------------------------- /EXAMPLE CODE/roster/roster_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/roster/roster_data.json -------------------------------------------------------------------------------- /EXAMPLE CODE/search1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/search1.py -------------------------------------------------------------------------------- /EXAMPLE CODE/search10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/search10.py -------------------------------------------------------------------------------- /EXAMPLE CODE/search2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/search2.py -------------------------------------------------------------------------------- /EXAMPLE CODE/search3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/search3.py -------------------------------------------------------------------------------- /EXAMPLE CODE/search4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/search4.py -------------------------------------------------------------------------------- /EXAMPLE CODE/search5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/search5.py -------------------------------------------------------------------------------- /EXAMPLE CODE/search6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/search6.py -------------------------------------------------------------------------------- /EXAMPLE CODE/search7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/search7.py -------------------------------------------------------------------------------- /EXAMPLE CODE/search8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/search8.py -------------------------------------------------------------------------------- /EXAMPLE CODE/search9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/search9.py -------------------------------------------------------------------------------- /EXAMPLE CODE/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/sequence.py -------------------------------------------------------------------------------- /EXAMPLE CODE/socket1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/socket1.py -------------------------------------------------------------------------------- /EXAMPLE CODE/socket2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/socket2.py -------------------------------------------------------------------------------- /EXAMPLE CODE/soft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/soft.py -------------------------------------------------------------------------------- /EXAMPLE CODE/spamave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/spamave.py -------------------------------------------------------------------------------- /EXAMPLE CODE/tracks.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/tracks.zip -------------------------------------------------------------------------------- /EXAMPLE CODE/tracks/Library.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/tracks/Library.xml -------------------------------------------------------------------------------- /EXAMPLE CODE/tracks/README.txt: -------------------------------------------------------------------------------- 1 | TBD 2 | 3 | -------------------------------------------------------------------------------- /EXAMPLE CODE/tracks/tracks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/tracks/tracks.py -------------------------------------------------------------------------------- /EXAMPLE CODE/twdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/twdump.py -------------------------------------------------------------------------------- /EXAMPLE CODE/twfriends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/twfriends.py -------------------------------------------------------------------------------- /EXAMPLE CODE/twitter1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/twitter1.py -------------------------------------------------------------------------------- /EXAMPLE CODE/twitter2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/twitter2.py -------------------------------------------------------------------------------- /EXAMPLE CODE/twjoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/twjoin.py -------------------------------------------------------------------------------- /EXAMPLE CODE/twspider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/twspider.py -------------------------------------------------------------------------------- /EXAMPLE CODE/twtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/twtest.py -------------------------------------------------------------------------------- /EXAMPLE CODE/twurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/twurl.py -------------------------------------------------------------------------------- /EXAMPLE CODE/txtcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/txtcheck.py -------------------------------------------------------------------------------- /EXAMPLE CODE/txtcheck2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/txtcheck2.py -------------------------------------------------------------------------------- /EXAMPLE CODE/txtcheck3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/txtcheck3.py -------------------------------------------------------------------------------- /EXAMPLE CODE/txtcount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/txtcount.py -------------------------------------------------------------------------------- /EXAMPLE CODE/txtdelete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/txtdelete.py -------------------------------------------------------------------------------- /EXAMPLE CODE/txtmd5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/txtmd5.py -------------------------------------------------------------------------------- /EXAMPLE CODE/txtsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/txtsize.py -------------------------------------------------------------------------------- /EXAMPLE CODE/urljpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/urljpeg.py -------------------------------------------------------------------------------- /EXAMPLE CODE/urllib1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/urllib1.py -------------------------------------------------------------------------------- /EXAMPLE CODE/urllib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/urllib2.py -------------------------------------------------------------------------------- /EXAMPLE CODE/urllink2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/urllink2.py -------------------------------------------------------------------------------- /EXAMPLE CODE/urllink3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/urllink3.py -------------------------------------------------------------------------------- /EXAMPLE CODE/urllinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/urllinks.py -------------------------------------------------------------------------------- /EXAMPLE CODE/urlregex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/urlregex.py -------------------------------------------------------------------------------- /EXAMPLE CODE/urlwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/urlwords.py -------------------------------------------------------------------------------- /EXAMPLE CODE/whathour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/whathour.py -------------------------------------------------------------------------------- /EXAMPLE CODE/wikidata.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/wikidata.db -------------------------------------------------------------------------------- /EXAMPLE CODE/wikigrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/wikigrade.py -------------------------------------------------------------------------------- /EXAMPLE CODE/wordlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/wordlist.py -------------------------------------------------------------------------------- /EXAMPLE CODE/words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/words.py -------------------------------------------------------------------------------- /EXAMPLE CODE/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/words.txt -------------------------------------------------------------------------------- /EXAMPLE CODE/xml1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/xml1.py -------------------------------------------------------------------------------- /EXAMPLE CODE/xml2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/EXAMPLE CODE/xml2.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/README.md -------------------------------------------------------------------------------- /Textbook - Castellano.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Textbook - Castellano.epub -------------------------------------------------------------------------------- /Textbook - English.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Textbook - English.epub -------------------------------------------------------------------------------- /Unit 1 - Introduction/A1.1 - Code screenshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Unit 1 - Introduction/A1.1 - Code screenshot.PNG -------------------------------------------------------------------------------- /Unit 1 - Introduction/A1.2. - Script execution.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Unit 1 - Introduction/A1.2. - Script execution.PNG -------------------------------------------------------------------------------- /Unit 1 - Introduction/C1.1 - Firstcode.py: -------------------------------------------------------------------------------- 1 | print("Hello pythonistas!") -------------------------------------------------------------------------------- /Unit 2 - Regular expressions/A.2.1 - regex text sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Unit 2 - Regular expressions/A.2.1 - regex text sample.txt -------------------------------------------------------------------------------- /Unit 2 - Regular expressions/A.2.2 - regex text data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Unit 2 - Regular expressions/A.2.2 - regex text data.txt -------------------------------------------------------------------------------- /Unit 2 - Regular expressions/C2.1 - Programming assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Unit 2 - Regular expressions/C2.1 - Programming assignment.py -------------------------------------------------------------------------------- /Unit 3 - Networks and sockets/C3.1. - Programming assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Unit 3 - Networks and sockets/C3.1. - Programming assignment.py -------------------------------------------------------------------------------- /Unit 4 - Programs that surf the web/BeautifulSoup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Unit 4 - Programs that surf the web/BeautifulSoup.py -------------------------------------------------------------------------------- /Unit 4 - Programs that surf the web/BeautifulSoup.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Unit 4 - Programs that surf the web/BeautifulSoup.pyc -------------------------------------------------------------------------------- /Unit 4 - Programs that surf the web/C4.1. Programming assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Unit 4 - Programs that surf the web/C4.1. Programming assignment.py -------------------------------------------------------------------------------- /Unit 4 - Programs that surf the web/C4.2. Programming assignment 2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Unit 4 - Programs that surf the web/C4.2. Programming assignment 2.py -------------------------------------------------------------------------------- /Unit 5 - Web services and XML/BeautifulSoup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Unit 5 - Web services and XML/BeautifulSoup.py -------------------------------------------------------------------------------- /Unit 5 - Web services and XML/BeautifulSoup.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Unit 5 - Web services and XML/BeautifulSoup.pyc -------------------------------------------------------------------------------- /Unit 5 - Web services and XML/C5.1. Programming assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Unit 5 - Web services and XML/C5.1. Programming assignment.py -------------------------------------------------------------------------------- /Unit 6 - JSON and the REST architecture/C.6.1. - Programming assignment 1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Unit 6 - JSON and the REST architecture/C.6.1. - Programming assignment 1.py -------------------------------------------------------------------------------- /Unit 6 - JSON and the REST architecture/C.6.2. - Programming assignment 2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGascon/Using-Python-to-Access-Web-Data---Coursera/HEAD/Unit 6 - JSON and the REST architecture/C.6.2. - Programming assignment 2.py --------------------------------------------------------------------------------