Difference between revisions of "Python:REST"

From wiki
Jump to navigation Jump to search
(Created page with "REST, REpresentational State Transfer * Transports JSON-formatted data over HTTP * Stateless as the server does not hold client context (history). Pre: simple, Con: sometimes...")
(No difference)

Revision as of 16:17, 20 March 2018

REST, REpresentational State Transfer

  • Transports JSON-formatted data over HTTP
  • Stateless as the server does not hold client context (history). Pre: simple, Con: sometimes more requests needed.