1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "shopNames": [
10 "CaitlynMinimalist",
11 "TuesdayMorningStudio",
12 "ModParty",
13 "SarahSilverDesigns",
14 "LittleRubyStudio",
15 "OrganicBioBlooms",
16 "BoholoveJewelry",
17 "AsterDesignStudio",
18 "FavourLanetm",
19 "WedlockDesign",
20 "MoonCreekCurio",
21 "JewelsbyJulianna",
22 "Glamorous3",
23 "MountainPieceStudio",
24 "VintageNestCA",
25 "HomeDecorShoppe",
26 "EarthyAffair",
27 "OhBohoBride",
28 "LivehuntJewelry",
29 "MySunshineNow",
30 "ArtFromDenmark",
31 "NorthwoodsCandlesCo",
32 "PrettyPinkSlumber",
33 "GoldBranchLV",
34 "LittleGirlClubShop",
35 "PlanetPups",
36 "SouthernBellBoutique",
37 "SilverRainSilver",
38 "AsandrosLeather",
39 "TheSilverWren",
40 ],
41 "maxItems": 10,
42 "proxyConfiguration": {
43 "useApifyProxy": True,
44 "apifyProxyGroups": ["RESIDENTIAL"],
45 },
46}
47
48
49run = client.actor("parseforge/etsy-scraper").call(run_input=run_input)
50
51
52print("๐พ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
53for item in client.dataset(run["defaultDatasetId"]).iterate_items():
54 print(item)
55
56