This is a simple RESTful API built using Python Flask and SQLite that allows users to be created, retrieved, updated, and deleted via HTTP endpoints.
- Create a user (
POST /users) - List all users (
GET /users) - Update a user (
PUT /users/<id>) - Delete a user (
DELETE /users/<id>)
- Python 3
- Flask
- SQLite (built-in database)