-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathmain.py
133 lines (115 loc) · 4.07 KB
/
main.py
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import requests
class Pixabay():
"""
Class - `Pixabay`\n
| Methods | Details |
| --------------------------- | ---------------------------------------------------------------------------------------------------- |
| `.get_video()` | Downloads the videos from pixaby to the local storage. |
| `.get_photo()` | Downloads the photos from pixaby to local storage. |
"""
def __init__(self, verbose=True):
self.bunch = '38504833-19606430bd8fde504120d1630'
self.name = 'Pixabay'
self.verbose = verbose
def __get_params_video(self, query, num, update_params={}):
"""
Class - `Pixabay`
Example:
```
quora = Pixabay()
quora.get_params_video(query,num)
```
Returns:
```js
{
'q': query given by user,
'video_type': typeof video(default is film),
'orientation': orientation of the video,
'safesearch': prevents adult content,
'per_page': number of videos to be fetched
}
```
"""
params = {
'q': query,
'video_type': 'film',
'orientation': 'horizontal',
'safesearch': 'true',
'per_page': num
}
params.update(update_params)
return params
def get_video(self, query, num=10, params={}):
"""
Class - `Pixabay`
Example:
```
quora = Pixabay()
quora.get_video(query,num)
```
Returns: Downloads num number of videos into local storage.
"""
BASE_URL = 'https://pixabay.com/api/videos/'
_params = self.__get_params_video(query, num, params)
response = requests.get(BASE_URL, params=_params)
data = response.json()
hits = data['hits']
for i, hit in enumerate(hits):
if self.verbose:
print(f" Downloading Pixabay videos {i+1}/{num}")
video_url = hit['videos']['large']['url']
response = requests.get(video_url)
if response is not None:
with open(f'video_pixabay_{i+1:02d}.mp4', 'wb') as f:
f.write(response.content)
def __get_params_photo(self, query, num, update_params={}):
"""
Class - `Pixabay`
Example:
```
quora = Pixabay()
quora.get_params_photo(query,num)
```
Returns:
```js
{
'q': query given by user,
'video_type': type of photo,
'orientation': orientation of the photo,
'safesearch': prevents adult content,
'per_page': number of images to be fetched
}
```
"""
params = {
'q': query,
'image_type': 'photo',
'orientation': 'horizontal',
'safesearch': 'true',
'per_page': num
}
params.update(update_params)
return params
def get_photo(self, query, num=10, params={}):
"""
Class - `Pixabay`
Example:
```
quora = Pixabay()
quora.get_photo(query,num)
```
Returns: Downloads num number of photos into local storage.
"""
BASE_URL = 'https://pixabay.com/api/'
_params = self.__get_params_photo(query, num, params)
response = requests.get(BASE_URL, params=_params)
data = response.json()
hits = data['hits']
for i, hit in enumerate(hits):
if self.verbose:
print(f" Downloading Pixabay photos {i+1}/{num}")
image_url = hit['largeImageURL']
response = requests.get(image_url)
if response is not None:
with open(f'photo_pixabay_{i+1:02d}.jpg', 'wb') as f:
f.write(response.content)