├── .gitattributes ├── README.md ├── assets ├── sample output files │ ├── out.epub │ └── out.html └── screenshots │ ├── driver path.PNG │ ├── epub_writer.PNG │ ├── main.PNG │ ├── sample_out_epub.PNG │ └── sample_out_html.PNG ├── chapters.pickle ├── driver ├── chromedriver └── chromedriver.exe ├── epub_writer.py ├── main.py ├── out.html ├── requirements.txt ├── track.conf └── utils.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.* linguist-language=Python 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishalsarang/Leetcode-Questions-Scraper/HEAD/README.md -------------------------------------------------------------------------------- /assets/sample output files/out.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishalsarang/Leetcode-Questions-Scraper/HEAD/assets/sample output files/out.epub -------------------------------------------------------------------------------- /assets/sample output files/out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishalsarang/Leetcode-Questions-Scraper/HEAD/assets/sample output files/out.html -------------------------------------------------------------------------------- /assets/screenshots/driver path.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishalsarang/Leetcode-Questions-Scraper/HEAD/assets/screenshots/driver path.PNG -------------------------------------------------------------------------------- /assets/screenshots/epub_writer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishalsarang/Leetcode-Questions-Scraper/HEAD/assets/screenshots/epub_writer.PNG -------------------------------------------------------------------------------- /assets/screenshots/main.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishalsarang/Leetcode-Questions-Scraper/HEAD/assets/screenshots/main.PNG -------------------------------------------------------------------------------- /assets/screenshots/sample_out_epub.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishalsarang/Leetcode-Questions-Scraper/HEAD/assets/screenshots/sample_out_epub.PNG -------------------------------------------------------------------------------- /assets/screenshots/sample_out_html.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishalsarang/Leetcode-Questions-Scraper/HEAD/assets/screenshots/sample_out_html.PNG -------------------------------------------------------------------------------- /chapters.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishalsarang/Leetcode-Questions-Scraper/HEAD/chapters.pickle -------------------------------------------------------------------------------- /driver/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishalsarang/Leetcode-Questions-Scraper/HEAD/driver/chromedriver -------------------------------------------------------------------------------- /driver/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishalsarang/Leetcode-Questions-Scraper/HEAD/driver/chromedriver.exe -------------------------------------------------------------------------------- /epub_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishalsarang/Leetcode-Questions-Scraper/HEAD/epub_writer.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishalsarang/Leetcode-Questions-Scraper/HEAD/main.py -------------------------------------------------------------------------------- /out.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishalsarang/Leetcode-Questions-Scraper/HEAD/requirements.txt -------------------------------------------------------------------------------- /track.conf: -------------------------------------------------------------------------------- 1 | -1 -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bishalsarang/Leetcode-Questions-Scraper/HEAD/utils.py --------------------------------------------------------------------------------