Skip to content

Instantly share code, notes, and snippets.

View DerekHawkins's full-sized avatar

DerekHawkins

View GitHub Profile
# Scrape Shopify themes using scrapy.org
#!pip install scrapy
#%%writefile shopify_theme_spider.py
import scrapy
class ShopifyThemeSpider(scrapy.Spider):
name = 'bshopifyspider'
start_urls = ['https://themes.shopify.com/themes?page=1']