gitextract_mp6yf35w/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── bin/ │ └── pystock-crawler ├── pystock_crawler/ │ ├── __init__.py │ ├── exporters.py │ ├── items.py │ ├── loaders.py │ ├── settings.py │ ├── spiders/ │ │ ├── __init__.py │ │ ├── edgar.py │ │ ├── nasdaq.py │ │ └── yahoo.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── test_cmdline.py │ │ ├── test_loaders.py │ │ ├── test_spiders_edgar.py │ │ ├── test_spiders_nasdaq.py │ │ ├── test_spiders_yahoo.py │ │ └── test_utils.py │ ├── throttle.py │ └── utils.py ├── pytest.ini ├── requirements-test.txt ├── requirements.txt ├── scrapy.cfg └── setup.py