1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "lastName": "smith",
10 "searchMode": "name",
11 "boardCode": "25",
12 "state": "FL",
13 "searches": [
14 {
15 "lastName": "smith",
16 "boardCode": "25",
17 "state": "FL",
18 },
19 {
20 "lastName": "jones",
21 "boardCode": "25",
22 "state": "FL",
23 },
24 ],
25 "maxResults": 20,
26 "resultsPerPage": 50,
27}
28
29
30run = client.actor("automation-lab/florida-dbpr-license-verification-scraper").call(run_input=run_input)
31
32
33print("๐พ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
34for item in client.dataset(run["defaultDatasetId"]).iterate_items():
35 print(item)
36
37