RESTful

RESTful API (Representational State Transfer)

In computing, representational state transfer (REST) is the software architectural style of the World Wide Web. REST's coordinated set of constraints, applied to the design of components in a distributed hypermedia system, can lead to a higher-performing and more maintainable software architecture. Wikipedia

To the extent that systems conform to the constraints of REST they can be called RESTful. RESTful systems typically, but not always, communicate over Hypertext Transfer Protocol (HTTP) with the same HTTP verbs (GET, POST, PUT, DELETE, etc.) that web browsers use to retrieve web pages and to send data to remote servers.[4] REST systems interface with external systems as web resources identified by Uniform Resource Identifiers (URIs), for example /people/tom, which can be operated upon using standard verbs such as DELETE /people/tom. Wikipedia

Python API Creation

Creating and exposing APIs allows your web application to interact with other applications through machine-to-machine communication. API creation frameworks... FullStackPython

Flask API

Flask is a microframework for Python based on Werkzeug, Jinja 2 and good intentions. Flask Homepage

Browsable Web APIs for Flask

Last updated