Skip to main content

Retrieves info from Etsy using UrlLib and Beautiful Soup and returns the data in JSON.

Project description

Etsy Scraper

Retrieves info from Etsy using UrlLib and Beautiful Soup and returns the data in JSON.

Note: This is a web scraper, therefore, it will work until Etsy changes the tags we use to locate and extract the different fields in the page. Be aware of that if you plan on using it in any large scale project. Please see the Contribution section to help me keep it up-to-date!

Installation

Run the following to install:

pip install etsy_scraper

Usage

To retrieve product data:

from etsy_scraper.product_scraper import productScrape

# Retrieve product data from URL
productScrape(PRODUCT_URL)

# Returns
# {
#   "id": id,
#   "title": title,
#   "description": description,
#   "currency":currency,
#   "price":price,
#   "materials":materials,
#   "images":images,
# }

To retrieve vendor data:

from etsy_scraper.vendor_scraper import vendorScrape

# Retrieve vendor data from URL
vendorScrape(VENDOR_URL)

# Returns something like
# {
#   "name": name,
#   "subtitle": subtitle,
#   "location": location,
#   "vendor_since": vendor_since,
#   "number_of_sales": number_of_sales,
#   "banner_image": banner_image,
#   "vendor_image": vendor_image,
#   "featured_products": featured_products,
#   "all_products": all_products,
# }

Contribute

If you plan on using / are using the tool and notice that Etsy updated in a way that breaks this code, please notify me, either by raising an issue or submitting a PR.

License

This code is distributed under the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

etsy_scraper-0.0.1.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

etsy_scraper-0.0.1-py3-none-any.whl (4.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page