1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "ids": ["32515302"],
10 "myids": { "input": [
11 {
12 "id": "https://www.discogs.com/label/1430979-Daft-Punk",
13 "process": "get",
14 "category": "label",
15 },
16 {
17 "id": "855971",
18 "process": "get",
19 "category": "artist",
20 },
21 {
22 "id": "855971",
23 "process": "get",
24 "category": "artistReleases",
25 },
26 {
27 "id": "daft punk",
28 "process": "search",
29 "category": "artist",
30 },
31 {
32 "id": "https://www.discogs.com/sell/release/32515302",
33 "process": "sell",
34 "category": "release",
35 },
36 {
37 "id": "00602508108556",
38 "process": "sell",
39 "category": "list",
40 },
41 ] },
42 "mycookie": "",
43 "proxy": {
44 "useApifyProxy": True,
45 "apifyProxyGroups": ["RESIDENTIAL"],
46 },
47}
48
49
50run = client.actor("canadesk/discogs").call(run_input=run_input)
51
52
53print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
54for item in client.dataset(run["defaultDatasetId"]).iterate_items():
55 print(item)
56
57