hi , in the python requests POST tutorial in the site , there is this piece of code ,
url = 'https://ipaddress of my server .../myphp.php'
myjson = {'somekey': 'somevalue'}
x = requests.post(url, json = myjson)
it sends the json data to a php file in a server that i have access to
how can I access json data in myphp.php file in the server ???
thanks