├── .idea ├── .gitignore ├── CXProject.iml ├── dataSources.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── NERYS.zip └── NERYS ├── .idea ├── NERYS.iml ├── dataSources.local.xml ├── dataSources.xml ├── dataSources │ └── 4e3962c1-4018-4ff4-9c2e-5e7283f83494.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── NERYS ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── items.cpython-37.pyc │ ├── middlewares.cpython-37.pyc │ ├── pipelines.cpython-37.pyc │ └── settings.cpython-37.pyc ├── doc │ ├── keywords.txt │ └── shopify-sites.txt ├── items.py ├── log │ └── scrapy_2020_02_28.log ├── main.py ├── middlewares.py ├── pipelines.py ├── products.db ├── scrapy ├── settings.py └── spiders │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── shopify.cpython-37.pyc │ └── shopify.py ├── README.md ├── requirements.txt └── scrapy.cfg /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/CXProject.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/.idea/CXProject.iml -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /NERYS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS.zip -------------------------------------------------------------------------------- /NERYS/.idea/NERYS.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/.idea/NERYS.iml -------------------------------------------------------------------------------- /NERYS/.idea/dataSources.local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/.idea/dataSources.local.xml -------------------------------------------------------------------------------- /NERYS/.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/.idea/dataSources.xml -------------------------------------------------------------------------------- /NERYS/.idea/dataSources/4e3962c1-4018-4ff4-9c2e-5e7283f83494.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/.idea/dataSources/4e3962c1-4018-4ff4-9c2e-5e7283f83494.xml -------------------------------------------------------------------------------- /NERYS/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /NERYS/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/.idea/misc.xml -------------------------------------------------------------------------------- /NERYS/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/.idea/modules.xml -------------------------------------------------------------------------------- /NERYS/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/.idea/workspace.xml -------------------------------------------------------------------------------- /NERYS/NERYS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NERYS/NERYS/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /NERYS/NERYS/__pycache__/items.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/__pycache__/items.cpython-37.pyc -------------------------------------------------------------------------------- /NERYS/NERYS/__pycache__/middlewares.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/__pycache__/middlewares.cpython-37.pyc -------------------------------------------------------------------------------- /NERYS/NERYS/__pycache__/pipelines.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/__pycache__/pipelines.cpython-37.pyc -------------------------------------------------------------------------------- /NERYS/NERYS/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /NERYS/NERYS/doc/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/doc/keywords.txt -------------------------------------------------------------------------------- /NERYS/NERYS/doc/shopify-sites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/doc/shopify-sites.txt -------------------------------------------------------------------------------- /NERYS/NERYS/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/items.py -------------------------------------------------------------------------------- /NERYS/NERYS/log/scrapy_2020_02_28.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/log/scrapy_2020_02_28.log -------------------------------------------------------------------------------- /NERYS/NERYS/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/main.py -------------------------------------------------------------------------------- /NERYS/NERYS/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/middlewares.py -------------------------------------------------------------------------------- /NERYS/NERYS/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/pipelines.py -------------------------------------------------------------------------------- /NERYS/NERYS/products.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/products.db -------------------------------------------------------------------------------- /NERYS/NERYS/scrapy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NERYS/NERYS/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/settings.py -------------------------------------------------------------------------------- /NERYS/NERYS/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/spiders/__init__.py -------------------------------------------------------------------------------- /NERYS/NERYS/spiders/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/spiders/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /NERYS/NERYS/spiders/__pycache__/shopify.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/spiders/__pycache__/shopify.cpython-37.pyc -------------------------------------------------------------------------------- /NERYS/NERYS/spiders/shopify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/NERYS/spiders/shopify.py -------------------------------------------------------------------------------- /NERYS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/README.md -------------------------------------------------------------------------------- /NERYS/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/requirements.txt -------------------------------------------------------------------------------- /NERYS/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvah/CxSpider/HEAD/NERYS/scrapy.cfg --------------------------------------------------------------------------------