├── LICENSE ├── README.md ├── articles ├── Introdução.md └── Scrapy.md ├── images ├── Avatar.png ├── Scraper.png ├── Spider.png └── WebScraping.png └── notebooks ├── Beautiful Soup.ipynb ├── Fundamentos.ipynb ├── PyQuery.ipynb ├── Requests-HTML.ipynb ├── Web Crawler.ipynb ├── XML Parsing.ipynb └── novos_livros.xml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-akira/Python-Web-Scraping/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-akira/Python-Web-Scraping/HEAD/README.md -------------------------------------------------------------------------------- /articles/Introdução.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-akira/Python-Web-Scraping/HEAD/articles/Introdução.md -------------------------------------------------------------------------------- /articles/Scrapy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-akira/Python-Web-Scraping/HEAD/articles/Scrapy.md -------------------------------------------------------------------------------- /images/Avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-akira/Python-Web-Scraping/HEAD/images/Avatar.png -------------------------------------------------------------------------------- /images/Scraper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-akira/Python-Web-Scraping/HEAD/images/Scraper.png -------------------------------------------------------------------------------- /images/Spider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-akira/Python-Web-Scraping/HEAD/images/Spider.png -------------------------------------------------------------------------------- /images/WebScraping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-akira/Python-Web-Scraping/HEAD/images/WebScraping.png -------------------------------------------------------------------------------- /notebooks/Beautiful Soup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-akira/Python-Web-Scraping/HEAD/notebooks/Beautiful Soup.ipynb -------------------------------------------------------------------------------- /notebooks/Fundamentos.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-akira/Python-Web-Scraping/HEAD/notebooks/Fundamentos.ipynb -------------------------------------------------------------------------------- /notebooks/PyQuery.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-akira/Python-Web-Scraping/HEAD/notebooks/PyQuery.ipynb -------------------------------------------------------------------------------- /notebooks/Requests-HTML.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-akira/Python-Web-Scraping/HEAD/notebooks/Requests-HTML.ipynb -------------------------------------------------------------------------------- /notebooks/Web Crawler.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-akira/Python-Web-Scraping/HEAD/notebooks/Web Crawler.ipynb -------------------------------------------------------------------------------- /notebooks/XML Parsing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-akira/Python-Web-Scraping/HEAD/notebooks/XML Parsing.ipynb -------------------------------------------------------------------------------- /notebooks/novos_livros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-akira/Python-Web-Scraping/HEAD/notebooks/novos_livros.xml --------------------------------------------------------------------------------