diff --git a/PyGameUebung.py b/PyGameUebung.py new file mode 100644 index 0000000..3a75371 --- /dev/null +++ b/PyGameUebung.py @@ -0,0 +1,14 @@ +#Übungsprogramme Python +#Hauptmenü +import random +import os + +########################################## +######## Funktionsdeklarationen ########## +########################################## + + +########################################## +######## Hauptschleife ################### +########################################## +while True: \ No newline at end of file diff --git a/TestShazam.py b/TestShazam.py new file mode 100644 index 0000000..243df8d --- /dev/null +++ b/TestShazam.py @@ -0,0 +1,27 @@ +import requests + + + +url = "https://shazam.p.rapidapi.com/songs/detect"; + + + +payload = "Generate one on your own for testing" + +headers = { + + 'content-type': "application/xml", + + 'x-rapidapi-key': "bda652d38cmsh3e7190de8cc5555p1560bajsn491e447f52d3", + + 'x-rapidapi-host': "shazam.p.rapidapi.com" + + } + + + +response = requests.request("POST", url, data=payload, headers=headers) + + + +print(response.text) \ No newline at end of file