File size: 1,220 Bytes
096addf
 
bba8f93
 
096addf
bba8f93
 
 
7ecec8c
 
 
 
 
bba8f93
6d77cf3
 
 
 
4983a96
 
 
 
 
 
 
 
 
bba8f93
 
 
 
999a02a
bba8f93
 
 
 
9281945
bba8f93
 
 
 
 
 
 
 
999a02a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bba8f93
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
license: mit
language:
- en
---

# hand.json

3,000 image data about "Hand" retrieved from Unsplash.

# portrait.json

10,000 image data about "Portrait" retrieved from Unsplash.

# pose.json

10,000 image data about "Pose" retrieved from Unsplash.

# Tool

- [unsplash-wizard](https://github.com/p1atdev/unsplash-wizard)

```typescript
deno task build
./unsplash download ./hand.json -o ./hand --color --relatedTags --likes 50
```

# Type Definition

```typescript
interface Photo {
  id: string
  color: string
  description: string | null
  alt_description: string | null
  tags: string[]
  likes: number
  urls: {
    raw: string
    full: string
    regular: string
    small: string
    thumb: string
    small_s3: string
  }
  width: number
  height: number
  related_tags: string[]
  location: {
      name: string | null
      city: string | null
      country: string | null
      position: {
          latitude: number | null
          longitude: number | null
      }
  }
  exif: {
      make: string | null
      model: string | null
      exposure_time: string | null
      aperture: string | null
      focal_length: string | null
      iso: number | null
  }
  views: number
  downloads: number
}
```