Sending json data from localhost Jupyter notebook to vue page

Question:

deleted. oo -> del <- aa post client 30 characters

Asked By: Jack D

||

Answers:

In the Python script, you’re making a POST request.

The error message from your other code says you’re making a GET request, which the endpoint doesn’t handle (hence the 405 status code).

If the Python code is successful, then you should make a POST request in your other client, too.

Answered By: ndc85430