├── .gitignore ├── README.rst ├── requirements.txt ├── scrapyelasticsearch ├── __init__.py ├── scrapyelasticsearch.py └── transportNTLM.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | .*sw* 4 | *egg-info 5 | dist 6 | .ropeproject 7 | MANIFEST 8 | env 9 | .vscode 10 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayzeng/scrapy-elasticsearch/HEAD/README.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayzeng/scrapy-elasticsearch/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrapyelasticsearch/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.9.2' 2 | -------------------------------------------------------------------------------- /scrapyelasticsearch/scrapyelasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayzeng/scrapy-elasticsearch/HEAD/scrapyelasticsearch/scrapyelasticsearch.py -------------------------------------------------------------------------------- /scrapyelasticsearch/transportNTLM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayzeng/scrapy-elasticsearch/HEAD/scrapyelasticsearch/transportNTLM.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayzeng/scrapy-elasticsearch/HEAD/setup.py --------------------------------------------------------------------------------