├── .coverage ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── MANIFEST ├── README.md ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ └── index.rst ├── grabfeed ├── __init__.py ├── grabber.py └── test.py ├── requirements.txt ├── requirements_dev.txt ├── setup.cfg └── setup.py /.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaflesudip/grabfeed/HEAD/.coverage -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaflesudip/grabfeed/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaflesudip/grabfeed/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaflesudip/grabfeed/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaflesudip/grabfeed/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaflesudip/grabfeed/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaflesudip/grabfeed/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaflesudip/grabfeed/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaflesudip/grabfeed/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaflesudip/grabfeed/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /grabfeed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /grabfeed/grabber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaflesudip/grabfeed/HEAD/grabfeed/grabber.py -------------------------------------------------------------------------------- /grabfeed/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaflesudip/grabfeed/HEAD/grabfeed/test.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.4.1 2 | requests==2.10.0 3 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaflesudip/grabfeed/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaflesudip/grabfeed/HEAD/setup.py --------------------------------------------------------------------------------