forked from ravenfeld/Server-Podcasts-Garmin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
api_podcasting_index.py
30 lines (26 loc) · 977 Bytes
/
api_podcasting_index.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
#! /Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8
# -*- coding: utf-8 -*-
import os
import requests
import time
import hashlib
import config
def search_podcats(name):
# we'll need the unix time
epoch_time = int(time.time())
# our hash here is the api key + secret + time
data_to_hash = os.environ['PODCASTING_INDEX_KEY']+ os.environ['PODCASTING_INDEX_SECRET']+ str(epoch_time)
# which is then sha-1'd
sha_1 = hashlib.sha1(data_to_hash.encode()).hexdigest()
headers = {
'X-Auth-Date': str(epoch_time),
'X-Auth-Key': os.environ['PODCASTING_INDEX_KEY'],
'Authorization': sha_1,
'User-Agent': 'postcasting-index-python-cli'
}
url = 'https://api.podcastindex.org/api/1.0/search/byterm?q=' + \
name+'&type=podcast&only_in=title'
if config.ACTIVE_LOG:
print("search_podcats :"+url)
response = requests.request('GET', url, headers=headers)
return response.json()