├── .coveralls.yml ├── .gitignore ├── .pylintrc ├── .travis.yml ├── LICENSE ├── README.md ├── nlrb_data ├── __init__.py ├── scraper.py └── tests │ └── test_scraper.py ├── python-requirements-full.txt ├── python-requirements.txt └── setup.py /.coveralls.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/nlrb_data/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/nlrb_data/HEAD/.pylintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/nlrb_data/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/nlrb_data/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/nlrb_data/HEAD/README.md -------------------------------------------------------------------------------- /nlrb_data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/nlrb_data/HEAD/nlrb_data/__init__.py -------------------------------------------------------------------------------- /nlrb_data/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/nlrb_data/HEAD/nlrb_data/scraper.py -------------------------------------------------------------------------------- /nlrb_data/tests/test_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/nlrb_data/HEAD/nlrb_data/tests/test_scraper.py -------------------------------------------------------------------------------- /python-requirements-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/nlrb_data/HEAD/python-requirements-full.txt -------------------------------------------------------------------------------- /python-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/nlrb_data/HEAD/python-requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LexPredict/nlrb_data/HEAD/setup.py --------------------------------------------------------------------------------