├── .gitignore ├── AUTHORS ├── LICENSE ├── README.md ├── dist └── infoq_downloader.exe ├── infoq_downloader.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | build/** 2 | infoq_downloader.spec -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtayseer/infoq-downloader/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtayseer/infoq-downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtayseer/infoq-downloader/HEAD/README.md -------------------------------------------------------------------------------- /dist/infoq_downloader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtayseer/infoq-downloader/HEAD/dist/infoq_downloader.exe -------------------------------------------------------------------------------- /infoq_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtayseer/infoq-downloader/HEAD/infoq_downloader.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | lxml 3 | cssselect --------------------------------------------------------------------------------