Update Python REST demo to accept operations as ACTION/RESOURCE/ID1/ID2 #34
Labels
good first issue
Good for newcomers
Python
Tasks related with Python language developments
REST
Tasks involved with the development of REST demos
As it was done in the C++ implementation, we should also make this same implementation for the Python version.
It consists on allowing operations via URL without a body request
For example:
Instead of
curl -X GET http://localhost:XXXX/add/Matrices ... -d {"id1": 5, "id2" : 27 }
Something like
curl -X GET http://localhost:XXXX/add/Matrices/5/27
The text was updated successfully, but these errors were encountered: