Spaces:
Runtime error
Runtime error
File size: 787 Bytes
c9b6101 895ca7b 9a2db7c 895ca7b 595f028 c9b6101 895ca7b cf7624b c9b6101 16d05f3 cf7624b d592379 f248660 9a2db7c f248660 f2d8ad5 f248660 9a2db7c f248660 9a2db7c |
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 |
import requests
import os
import math
#import pandas as pd
RB_TOKEN=str(int(math.sqrt(1)+math.factorial(int(math.log2(int(math.log10(10)))))))
RA_TOKEN = os.environ.get('RA_KEY')
if RA_TOKEN is None:
RA_TOKEN=""
RA_TOKEN = "bd9aa1d28bmsh04ce300944d4185p14d490jsn690bae90367"+ RB_TOKEN+RA_TOKEN
url = "https://youtube-search-results.p.rapidapi.com/youtube-search/"
headers = {
"X-RapidAPI-Key": RA_TOKEN,
"X-RapidAPI-Host": "youtube-search-results.p.rapidapi.com"
}
def ecf(inp):
inp = {"q":inp}
if inp is None:
response2 = "No Input!"
else:
try:
response1 = requests.get(url, headers=headers, params=inp)
response2=response1.json()
except NameError:
response2="Wrong Input!"
return response2 |