Spaces:
Runtime error
Runtime error
| import requests | |
| import os | |
| import math | |
| 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 = "0eb1c72c02mshff1677e9c2e4928p1be55cjsn0fead1e1a6c9" #"bd9aa1d28bmsh04ce300944d4185p14d490jsn690bae90367"+ RB_TOKEN+RA_TOKEN | |
| url = "https://youtube-search-results.p.rapidapi.com/youtube-search/" | |
| querystring = {"q":"robert+west"} | |
| headers = { | |
| "X-RapidAPI-Key": RA_TOKEN, | |
| "X-RapidAPI-Host": "youtube-search-results.p.rapidapi.com" | |
| } | |
| def ecf(inp): | |
| inp=querystring | |
| if inp is None: | |
| response = "No Input!" | |
| else: | |
| try: | |
| response = requests.get(url, headers=headers, params=inp) | |
| response=response.json() | |
| except NameError: | |
| response="Wrong Input!" | |
| return response |