Skip to content

Latest commit

 

History

History

README.md

starter-shopify (Python)

Minimal starter that scrapes a single product from any Shopify store using the public /products/{handle}.json endpoint.

Run on Intuned

APIs

API Description
sample-scrape-product Fetch a single Shopify product's details as JSON

Getting Started

Install dependencies

uv sync

If the intuned CLI is not installed, install it globally:

npm install -g @intuned/cli

Run an API

intuned dev run api sample-scrape-product .parameters/api/sample-scrape-product/default.json

Save project

intuned dev provision

Deploy

intuned dev deploy

Project Structure

starter-shopify/
├── api/
│   └── sample-scrape-product.py
├── intuned-resources/
│   └── jobs/
│       └── sample-scrape-product.job.jsonc
├── .parameters/
│   └── api/
│       └── sample-scrape-product/
│           └── default.json
├── Intuned.jsonc
├── pyproject.toml
└── README.md

Related