├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── data ├── ebay_iphone_x_256gb_products.csv ├── ebay_iphone_x_256gb_products.xlsx └── ebay_iphone_x_256gb_products_sample.jpg ├── products.csv ├── scraping_ebay ├── __init__.py ├── items.py ├── middlewares.py ├── pipelines.py ├── settings.py └── spiders │ ├── __init__.py │ ├── ebay.py │ ├── ebay_au_complete.py │ └── ebay_au_sold.py └── scrapy.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/README.md -------------------------------------------------------------------------------- /data/ebay_iphone_x_256gb_products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/data/ebay_iphone_x_256gb_products.csv -------------------------------------------------------------------------------- /data/ebay_iphone_x_256gb_products.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/data/ebay_iphone_x_256gb_products.xlsx -------------------------------------------------------------------------------- /data/ebay_iphone_x_256gb_products_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/data/ebay_iphone_x_256gb_products_sample.jpg -------------------------------------------------------------------------------- /products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/products.csv -------------------------------------------------------------------------------- /scraping_ebay/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scraping_ebay/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/scraping_ebay/items.py -------------------------------------------------------------------------------- /scraping_ebay/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/scraping_ebay/middlewares.py -------------------------------------------------------------------------------- /scraping_ebay/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/scraping_ebay/pipelines.py -------------------------------------------------------------------------------- /scraping_ebay/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/scraping_ebay/settings.py -------------------------------------------------------------------------------- /scraping_ebay/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/scraping_ebay/spiders/__init__.py -------------------------------------------------------------------------------- /scraping_ebay/spiders/ebay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/scraping_ebay/spiders/ebay.py -------------------------------------------------------------------------------- /scraping_ebay/spiders/ebay_au_complete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/scraping_ebay/spiders/ebay_au_complete.py -------------------------------------------------------------------------------- /scraping_ebay/spiders/ebay_au_sold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/scraping_ebay/spiders/ebay_au_sold.py -------------------------------------------------------------------------------- /scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpatrickalves/scraping-ebay/HEAD/scrapy.cfg --------------------------------------------------------------------------------