Incomplete
Pages in this section
- CRUD APILast edited: 2023-11-11
A CRUD API is one that has a set of standard end points:
- Create,
- Read,
- Update, and
- Delete. These normally connects to a database .
- Fast APILast edited: 2023-11-11
This is a python library to implement an API . Whilst there are other API implementations in python such as Flask the unique selling point of Fast API is it’s speed.
Similarly to Flask this is implemented mainly by using decorators to wrap functions to turn them into end points.
- InterfaceLast edited: 2023-11-11
An interface is a standard way for a someone else to interact with an object. There are lots of interfaces you will deal with such as API’s , library functions, or UI’s .
A well defined interface makes objects easy to use and help the process of Abstraction .
- REST APILast edited: 2023-11-11
This is a specific type of API that conforms to a certain specification.