├── .gitignore ├── CONTRIBUTORS.txt ├── LICENSE ├── README.md ├── article.py ├── g4g.py ├── requirements.txt ├── screenshots ├── G4G_C_html.png └── G4G_C_pdf.png └── style.min.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearner/GeeksForGeeksScrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearner/GeeksForGeeksScrapper/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearner/GeeksForGeeksScrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearner/GeeksForGeeksScrapper/HEAD/README.md -------------------------------------------------------------------------------- /article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearner/GeeksForGeeksScrapper/HEAD/article.py -------------------------------------------------------------------------------- /g4g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearner/GeeksForGeeksScrapper/HEAD/g4g.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.5.3 2 | bs4==0.0.1 3 | requests==2.12.4 4 | -------------------------------------------------------------------------------- /screenshots/G4G_C_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearner/GeeksForGeeksScrapper/HEAD/screenshots/G4G_C_html.png -------------------------------------------------------------------------------- /screenshots/G4G_C_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearner/GeeksForGeeksScrapper/HEAD/screenshots/G4G_C_pdf.png -------------------------------------------------------------------------------- /style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CuriousLearner/GeeksForGeeksScrapper/HEAD/style.min.css --------------------------------------------------------------------------------